blob: 32003c84a1a0203d38c25f6635ccb9a61fcb380e [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>
<parent>
<groupId>org.eclipse.ptp</groupId>
<artifactId>ptp-parent</artifactId>
<version>7.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>org.eclipse.ptp.rdt.core.remotejars</artifactId>
<version>7.0.5-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<profiles>
<profile>
<id>tools.jar</id>
<activation>
<property>
<name>java.vendor</name>
<value>Sun Microsystems Inc.</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<strictBinIncludes>false</strictBinIncludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-trax</artifactId>
<version>1.6.5</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>rdt-remote-jars</id>
<goals>
<goal>run</goal>
</goals>
<phase>package</phase>
<inherited>false</inherited>
<configuration>
<tasks>
<ant target="server.all">
<property name="serverVersion" value="${unqualifiedVersion}"/>
<property name="buildQualifier" value="${buildQualifier}"/>
</ant>
</tasks>
</configuration>
</execution>
<execution>
<id>rdt-remote-jars-clean</id>
<goals>
<goal>run</goal>
</goals>
<phase>clean</phase>
<inherited>false</inherited>
<configuration>
<tasks>
<ant target="clean">
<property name="serverVersion" value="${unqualifiedVersion}"/>
<property name="buildQualifier" value="${buildQualifier}"/>
</ant>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>