Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2011-08-30 23:45:22 +0000
committerMatthias Sohn2011-09-05 07:24:05 +0000
commit44274434ad79802e24acbf106738ef47078f409f (patch)
tree41724b1b2d827a9b159fc15b47d0d14cc26a84c8 /org.eclipse.jgit.packaging
parentd110fbc300fe32b00a491e6471d5534f4615b87b (diff)
downloadjgit-44274434ad79802e24acbf106738ef47078f409f.tar.gz
jgit-44274434ad79802e24acbf106738ef47078f409f.tar.xz
jgit-44274434ad79802e24acbf106738ef47078f409f.zip
Define os/ws/arch environments for tycho build
Explicitly define os/ws/arch environments for target-platform-configuration to make build platform independent. Change-Id: If43f5ee573c9abaa0359ea2386477b379012e834 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.packaging')
-rw-r--r--org.eclipse.jgit.packaging/pom.xml29
1 files changed, 28 insertions, 1 deletions
diff --git a/org.eclipse.jgit.packaging/pom.xml b/org.eclipse.jgit.packaging/pom.xml
index 21aa2ebbf0..19cc57e27f 100644
--- a/org.eclipse.jgit.packaging/pom.xml
+++ b/org.eclipse.jgit.packaging/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2009-2010, Matthias Sohn <matthias.sohn@sap.com>
+ Copyright (C) 2009-2011, Matthias Sohn <matthias.sohn@sap.com>
and other copyright owners as documented in the project's IP log.
This program and the accompanying materials are made available
@@ -130,6 +130,33 @@
<configuration>
<resolver>p2</resolver>
<pomDependencies>consider</pomDependencies>
+ <environments>
+ <environment>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86_64</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86_64</arch>
+ </environment>
+ <environment>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86_64</arch>
+ </environment>
+ </environments>
</configuration>
</plugin>
</plugins>

Back to the top