blob: 36372b25d300ebe70bcbdf668c97e1a634b92917 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tycho-extras-its-project</groupId>
<artifactId>source-feature-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>sourcefeature.feature</artifactId>
<packaging>eclipse-feature</packaging>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<dependency-resolution>
<extraRequirements>
<!-- this guarantees proper reactor build order -->
<requirement>
<type>eclipse-plugin</type>
<id>extra.sourcefeature.bundle</id>
<versionRange>0.0.0</versionRange>
</requirement>
</extraRequirements>
</dependency-resolution>
</configuration>
</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>
<goals>
<goal>source-feature</goal>
</goals>
<configuration>
<plugins>
<plugin id="extra.sourcefeature.bundle" versionRange="0.0.0" />
</plugins>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<defaultP2Metadata>false</defaultP2Metadata>
</configuration>
<executions>
<execution>
<id>attached-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>