blob: 73243a63e5f7f34db66d880f19ed4d8da826455c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>eclipse-releng-test-parent</artifactId>
<groupId>org.eclipse</groupId>
<version>4.6.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.releng</groupId>
<artifactId>org.eclipse.releng.bug460487</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
<defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>echoAll</id>
<phase>compile</phase>
<configuration>
<target>
<echoproperties destfile="target/antecho.properties" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>expressions</id>
<goals>
<goal>expressions</goal>
</goals>
<phase>compile</phase>
<configuration>
<output>target/resources/expressions.txt</output>
</configuration>
</execution>
<execution>
<id>effective-settings</id>
<goals>
<goal>effective-settings</goal>
</goals>
<phase>compile</phase>
<configuration>
<output>target/resources/effectiveSettings.xml</output>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>