blob: af0bf846d3868f6bac6c378387c98c43bc069c27 [file] [log] [blame]
<?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.ptp.master</groupId>
<version>9.2.1-SNAPSHOT</version>
<artifactId>org.eclipse.ptp.master</artifactId>
<packaging>pom</packaging>
<name>PTP Products</name>
<properties>
<ptp-version>nightly</ptp-version>
<remote-version>nightly</remote-version>
<tycho-version>1.0.0</tycho-version>
<eclipse-release>photon</eclipse-release>
<!-->eclipse-site>http://download.eclipse.org/releases/${eclipse-release}</eclipse-site-->
<eclipse-site>http://download.eclipse.org/staging/${eclipse-release}</eclipse-site>
<ptp-site>http://download.eclipse.org/tools/ptp/builds/${ptp-version}</ptp-site>
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/${remote-version}</remote-site>
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20170818183741/repository/</orbit-site>
<ptp-install-dir>/home/data/httpd/download.eclipse.org/tools/ptp/builds/${ptp-version}</ptp-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>org.eclipse.ptp.rcp.sysmon</module>
<module>org.eclipse.ptp.rcp.sysmon-feature</module>
<module>org.eclipse.ptp.product-feature</module>
<module>org.eclipse.ptp.rcp.sysmon-product</module>
<module>org.eclipse.ptp-product</module>
</modules>
<repositories>
<repository>
<id>eclipse-${eclipse-release}</id>
<url>${eclipse-site}</url>
<layout>p2</layout>
</repository>
<repository>
<id>ptp-${eclipse-release}</id>
<url>${ptp-site}</url>
<layout>p2</layout>
</repository>
<repository>
<id>remote-${eclipse-release}</id>
<url>${remote-site}</url>
<layout>p2</layout>
</repository>
<repository>
<id>orbit-${eclipse-release}</id>
<url>${orbit-site}</url>
<layout>p2</layout>
</repository>
</repositories>
<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</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</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>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>plugin-source</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>
<compilerArgument>-err:-discouraged,forbidden</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<encoding>ISO-8859-1</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.2</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>2.5</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>
</plugins>
</pluginManagement>
</build>
</project>