Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2011-08-30 23:20:32 +0000
committerMatthias Sohn2011-09-05 07:39:45 +0000
commit870fe185cd2c7d80fca0c7ca4fb2fc52c2760885 (patch)
tree1492b80cbfb759a8b6124c2268b750e1f799ebaa /pom.xml
parentb082d8e85868eb71dff321fc73bd46f887f9e38d (diff)
downloadegit-870fe185cd2c7d80fca0c7ca4fb2fc52c2760885.tar.gz
egit-870fe185cd2c7d80fca0c7ca4fb2fc52c2760885.tar.xz
egit-870fe185cd2c7d80fca0c7ca4fb2fc52c2760885.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: I258188b2227cd81c131c228ba16cad8f5b9b9171 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 3ad4dfc855..b3e8100e29 100644
--- a/pom.xml
+++ b/pom.xml
@@ -211,6 +211,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