Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikaƫl Barbero2014-07-17 17:09:35 +0000
committerMikael Barbero2014-07-17 17:16:40 +0000
commitad3981eeab5b0f9fc1456d40465418b892e6e3b2 (patch)
tree219d0915ffc3c83168233420cde55ee796643a5c /packaging/org.eclipse.emf.compare.rcp.ui-feature
parent695994391470b24a8f3e88a816d2badb81811639 (diff)
downloadorg.eclipse.emf.compare-ad3981eeab5b0f9fc1456d40465418b892e6e3b2.tar.gz
org.eclipse.emf.compare-ad3981eeab5b0f9fc1456d40465418b892e6e3b2.tar.xz
org.eclipse.emf.compare-ad3981eeab5b0f9fc1456d40465418b892e6e3b2.zip
Reworked Maven build
All plugins are now declared in the pluginManagement section with proper version Each module has its dedicated <build> section if appropriate (it avoids to execute source-feature goal for bundles e.g.) Change-Id: Id33a5f556666834ce1cae1fa0775c1fb44457316
Diffstat (limited to 'packaging/org.eclipse.emf.compare.rcp.ui-feature')
-rw-r--r--packaging/org.eclipse.emf.compare.rcp.ui-feature/pom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/packaging/org.eclipse.emf.compare.rcp.ui-feature/pom.xml b/packaging/org.eclipse.emf.compare.rcp.ui-feature/pom.xml
index cf5ecc3a4..dada9e921 100644
--- a/packaging/org.eclipse.emf.compare.rcp.ui-feature/pom.xml
+++ b/packaging/org.eclipse.emf.compare.rcp.ui-feature/pom.xml
@@ -12,4 +12,33 @@
<artifactId>org.eclipse.emf.compare.rcp.ui</artifactId>
<version>3.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <executions>
+ <execution>
+ <!-- Don't attach (default) metadata before the source-feature execution.-->
+ <id>default-p2-metadata-default</id>
+ <configuration>
+ <attachP2Metadata>false</attachP2Metadata>
+ </configuration>
+ </execution>
+ <execution>
+ <id>attach-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top