Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2019-06-12 12:23:01 +0000
committerQuentin Le Menez2019-06-12 16:12:55 +0000
commit8d9e61b2b52ba51d774875bc4fca0f7403fc10f4 (patch)
treebb33921d8e480fd6c35e0d11bbebdf07c8250440 /features
parent7950d625faf2be8f90e494085475630ffaf2ec63 (diff)
downloadorg.eclipse.papyrus-4.4.0_RC2.tar.gz
org.eclipse.papyrus-4.4.0_RC2.tar.xz
org.eclipse.papyrus-4.4.0_RC2.zip
Bug 545631 - [Releng] Update the targets for 2019-06 RC24.4.0_RC2
- Add a strong dependency to guava 21 to avoid compiling against 27.1.0 in orbit - Rewire xwt dependency to the new milestone Change-Id: I54f2f76414b34acd186c2adfe6ce529b44f5c231 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'features')
-rw-r--r--features/papyrus-main-features/org.eclipse.papyrus.sdk.feature/pom.xml32
1 files changed, 29 insertions, 3 deletions
diff --git a/features/papyrus-main-features/org.eclipse.papyrus.sdk.feature/pom.xml b/features/papyrus-main-features/org.eclipse.papyrus.sdk.feature/pom.xml
index 4444588cc0a..4f23d780d84 100644
--- a/features/papyrus-main-features/org.eclipse.papyrus.sdk.feature/pom.xml
+++ b/features/papyrus-main-features/org.eclipse.papyrus.sdk.feature/pom.xml
@@ -2,11 +2,37 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.eclipse.papyrus</groupId>
- <artifactId>org.eclipse.papyrus.features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <groupId>org.eclipse.papyrus</groupId>
+ <artifactId>org.eclipse.papyrus.features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.papyrus.sdk.feature</artifactId>
<version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="com.google.guava" />
+ <plugin id="com.google.gson" />
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ </plugins>
+ </build>
+
</project>

Back to the top