| <?xml version="1.0" encoding="UTF-8"?> |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <prerequisites> |
| <maven>3.0</maven> |
| </prerequisites> |
| |
| <groupId>org.eclipse.remote</groupId> |
| <artifactId>remote-parent</artifactId> |
| <version>3.0.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>Remote Parent</name> |
| |
| <properties> |
| <remote-release>nightly</remote-release> |
| <tycho-version>1.4.0</tycho-version> |
| <tycho-extras-version>${tycho-version}</tycho-extras-version> |
| <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/ptp/org.eclipse.remote.git</tycho.scmUrl> |
| <platform-version>4.5</platform-version> |
| <platform-site>http://download.eclipse.org/eclipse/updates/${platform-version}/</platform-site> |
| <license-site>http://download.eclipse.org/cbi/updates/license/</license-site> |
| <tm-site>http://download.eclipse.org/tm/terminal/builds/development/nightly/</tm-site> |
| <cdt-site>http://download.eclipse.org/tools/cdt/builds/master/nightly/</cdt-site> |
| <remote-install-dir>/home/data/httpd/download.eclipse.org/tools/ptp/builds/remote/${remote-release}</remote-install-dir> |
| </properties> |
| |
| <licenses> |
| <license> |
| <name>Eclipse Public License v1.0</name> |
| <comments> |
| All rights reserved. |
| |
| This program and the accompanying materials are made |
| available under the terms of the Eclipse Public License v1.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v10.htm |
| </comments> |
| </license> |
| </licenses> |
| |
| <modules> |
| <module>../../releng/org.eclipse.remote.target</module> |
| <!-- Remote bundles --> |
| <module>../../bundles/org.eclipse.remote.core</module> |
| <module>../../bundles/org.eclipse.remote.jsch.core</module> |
| <module>../../bundles/org.eclipse.remote.jsch.ui</module> |
| <module>../../bundles/org.eclipse.remote.ui</module> |
| <!-- Proxy bundles --> |
| <module>../../bundles/org.eclipse.remote.proxy.core</module> |
| <module>../../bundles/org.eclipse.remote.proxy.ui</module> |
| <module>../../bundles/org.eclipse.remote.proxy.protocol.core</module> |
| <module>../../bundles/org.eclipse.remote.proxy.server.core</module> |
| <module>../../releng/org.eclipse.remote.proxy.server.product</module> |
| <module>../../releng/org.eclipse.remote.proxy.server.linux.x86_64</module> |
| <module>../../releng/org.eclipse.remote.proxy.server.linux.ppc64le</module> |
| <module>../../releng/org.eclipse.remote.proxy.server.macosx.x86_64</module> |
| <!-- Main feature --> |
| <module>../../features/org.eclipse.remote-feature</module> |
| <!-- Proxy feature --> |
| <module>../../features/org.eclipse.remote.proxy-feature</module> |
| <!-- Console Terminal feature --> |
| <module>../../bundles/org.eclipse.remote.console</module> |
| <module>../../features/org.eclipse.remote.console-feature</module> |
| <!-- Serial Port feature --> |
| <module>../../bundles/org.eclipse.remote.serial.core</module> |
| <module>../../bundles/org.eclipse.remote.serial.ui</module> |
| <module>../../features/org.eclipse.remote.serial-feature</module> |
| <!-- Telnet feature --> |
| <module>../../bundles/org.eclipse.remote.telnet.core</module> |
| <module>../../bundles/org.eclipse.remote.telnet.ui</module> |
| <module>../../features/org.eclipse.remote.telnet-feature</module> |
| <!-- Documentation --> |
| <module>../../bundles/org.eclipse.remote.doc.isv</module> |
| <!-- Repository --> |
| <module>../../releng/org.eclipse.remote.repo</module> |
| </modules> |
| |
| <repositories> |
| <repository> |
| <id>license</id> |
| <url>${license-site}</url> |
| <layout>p2</layout> |
| </repository> |
| </repositories> |
| |
| <distributionManagement> |
| <repository> |
| <id>repo.eclipse.org</id> |
| <name>Project Repository - Releases</name> |
| <url>https://repo.eclipse.org/content/repositories/ptp-releases</url> |
| </repository> |
| <snapshotRepository> |
| <id>repo.eclipse.org</id> |
| <name>Project Repository - Snapshots</name> |
| <url>https://repo.eclipse.org/content/repositories/ptp-snapshots</url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <extensions>true</extensions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <resolver>p2</resolver> |
| <pomDependencies>consider</pomDependencies> |
| <environments> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>ppc64le</arch> |
| </environment> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| <dependency-resolution> |
| <extraRequirements> |
| <requirement> |
| <type>eclipse-plugin</type> |
| <id>org.eclipse.ui.ide</id> |
| <versionRange>0.0.0</versionRange> |
| </requirement> |
| </extraRequirements> |
| </dependency-resolution> |
| <target> |
| <artifact> |
| <groupId>org.eclipse.remote</groupId> |
| <artifactId>org.eclipse.remote.target</artifactId> |
| <version>3.0.1-SNAPSHOT</version> |
| <classifier>photon</classifier> |
| </artifact> |
| </target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-source-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>plugin-source</id> |
| <goals> |
| <goal>plugin-source</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-source-feature-plugin</artifactId> |
| <version>${tycho-extras-version}</version> |
| <executions> |
| <execution> |
| <id>source-feature</id> |
| <phase>package</phase> |
| <goals> |
| <goal>source-feature</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <excludes> |
| <plugin id="org.eclipse.remote.proxy.server.linux.x86_64"/> |
| <plugin id="org.eclipse.remote.proxy.server.linux.ppc64le"/> |
| <plugin id="org.eclipse.remote.proxy.server.macosx.x86_64"/> |
| <plugin id="org.eclipse.remote.doc.isv"/> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>attached-p2-metadata</id> |
| <goals> |
| <goal>p2-metadata</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-versions-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>versions</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>update-pom</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.6</version> |
| <configuration> |
| <encoding>ISO-8859-1</encoding> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.7</version> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>findbugs-maven-plugin</artifactId> |
| <version>2.5.3</version> |
| <configuration> |
| <findbugsXmlOutput>true</findbugsXmlOutput> |
| <failOnError>false</failOnError> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.0.1</version> |
| <configuration> |
| <sourceEncoding>utf-8</sourceEncoding> |
| <minimumTokens>100</minimumTokens> |
| <targetJdk>1.5</targetJdk> |
| <format>xml</format> |
| <failOnViolation>false</failOnViolation> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>cpd-check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-packaging-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <sourceReferences> |
| <generate>true</generate> |
| </sourceReferences> |
| </configuration> |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-sourceref-jgit</artifactId> |
| <version>${tycho-extras-version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>eclipse-sign</id> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>m2e-cbi</id> |
| <url>http://download.eclipse.org/technology/m2e/maven/</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <includePackedArtifacts>true</includePackedArtifacts> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200a-plugin</artifactId> |
| <version>${tycho-extras-version}</version> |
| <executions> |
| <execution> |
| <id>pack200-normalize</id> |
| <goals> |
| <goal>normalize</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.eclipse.cbi.maven.plugins</groupId> |
| <artifactId>eclipse-jarsigner-plugin</artifactId> |
| <version>1.0.1</version> |
| <executions> |
| <execution> |
| <id>sign</id> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200b-plugin</artifactId> |
| <version>${tycho-extras-version}</version> |
| <executions> |
| <execution> |
| <id>pack200-pack</id> |
| <goals> |
| <goal>pack</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>p2-metadata</id> |
| <goals> |
| <goal>p2-metadata</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <defaultP2Metadata>false</defaultP2Metadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |