Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2012-06-13 07:40:55 +0000
committerMatthias Sohn2012-06-13 07:40:55 +0000
commit133b78b4a43d2acc9e2a75e7188c887bf2e94bd5 (patch)
tree949c8401b3c2e6ddc931be30a7c38e44b3f4a108 /pom.xml
parent97edbc9c106325e56417c8faba6a45a119fdcb83 (diff)
downloadegit-github-133b78b4a43d2acc9e2a75e7188c887bf2e94bd5.tar.gz
egit-github-133b78b4a43d2acc9e2a75e7188c887bf2e94bd5.tar.xz
egit-github-133b78b4a43d2acc9e2a75e7188c887bf2e94bd5.zip
Explicitly configure Tycho target runtime environment
This silences Tycho warnings which were logged previously. Change-Id: I8ac2bb1b4d88602329de366352c2b2fe0dba124d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml34
1 files changed, 33 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index c088375f..6cc299ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -131,7 +131,39 @@
<version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
- <pomDependencies>consider</pomDependencies>
+ <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</arch>
+ </environment>
+ <environment>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86_64</arch>
+ </environment>
+ </environments>
</configuration>
</plugin>
<plugin>

Back to the top