Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrás Szabolcs Nagy2016-10-06 08:49:13 +0000
committerAndrás Szabolcs Nagy2016-10-06 08:49:13 +0000
commit706f3d42c7555e65717a085c6656b90ae55ad8d0 (patch)
tree7799767bbf34cf6ed126d0b22c56ae72fde74768
parent16e06b962b79c5890e55979bc379c6415ad025e1 (diff)
downloadorg.eclipse.viatra-706f3d42c7555e65717a085c6656b90ae55ad8d0.tar.gz
org.eclipse.viatra-706f3d42c7555e65717a085c6656b90ae55ad8d0.tar.xz
org.eclipse.viatra-706f3d42c7555e65717a085c6656b90ae55ad8d0.zip
[503318] DSE maven build target platform fix attempt
-rw-r--r--releng/org.eclipse.viatra.parent.dse/pom.xml49
1 files changed, 37 insertions, 12 deletions
diff --git a/releng/org.eclipse.viatra.parent.dse/pom.xml b/releng/org.eclipse.viatra.parent.dse/pom.xml
index 93a2058b3..d5acefdb7 100644
--- a/releng/org.eclipse.viatra.parent.dse/pom.xml
+++ b/releng/org.eclipse.viatra.parent.dse/pom.xml
@@ -27,17 +27,42 @@
<viatra.incubation.version>0.15.0-SNAPSHOT</viatra.incubation.version>
</properties>
<build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-versions-plugin</artifactId>
- <version>${tycho.version}</version>
- <configuration>
- <properties>viatra.incubation.version</properties>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-versions-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <properties>viatra.incubation.version</properties>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <resolver>p2</resolver>
+ <target>
+ <artifact>
+ <groupId>org.eclipse.viatra</groupId>
+ <artifactId>org.eclipse.viatra.target.core</artifactId>
+ <version>${viatra.main.version}</version>
+ </artifact>
+ <dependency-resolution>
+ <extraRequirements>
+ <requirement>
+ <type>eclipse-plugin</type>
+ <id>com.google.inject.multibindings</id>
+ <versionRange>[3.0.0,4.0.0)</versionRange>
+ </requirement>
+ </extraRequirements>
+ </dependency-resolution>
+ </target>
+ <ignoreTychoRepositories>true</ignoreTychoRepositories>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
</project>

Back to the top