Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2013-01-08 21:31:54 +0000
committerBogdan Gheorghe2013-01-08 21:31:54 +0000
commitbabff2b56652637745eb55029b69f49d44e72e2f (patch)
treef970c393117b20af798cf539c44b33c3ed34938c /examples/org.eclipse.swt.examples.ole.win32/pom.xml
parent4b3c8574d06649452a22322cceaf48cf2a4643d4 (diff)
downloadeclipse.platform.swt-babff2b56652637745eb55029b69f49d44e72e2f.tar.gz
eclipse.platform.swt-babff2b56652637745eb55029b69f49d44e72e2f.tar.xz
eclipse.platform.swt-babff2b56652637745eb55029b69f49d44e72e2f.zip
Bug 396104 - Merge in CBI patches from 4.2.2 into 4.3 (pom changes) for eclipse.swt
Diffstat (limited to 'examples/org.eclipse.swt.examples.ole.win32/pom.xml')
-rw-r--r--examples/org.eclipse.swt.examples.ole.win32/pom.xml26
1 files changed, 25 insertions, 1 deletions
diff --git a/examples/org.eclipse.swt.examples.ole.win32/pom.xml b/examples/org.eclipse.swt.examples.ole.win32/pom.xml
index c3fbd511b2..4127ab4e36 100644
--- a/examples/org.eclipse.swt.examples.ole.win32/pom.xml
+++ b/examples/org.eclipse.swt.examples.ole.win32/pom.xml
@@ -21,6 +21,30 @@
</parent>
<groupId>eclipse.platform.swt</groupId>
<artifactId>org.eclipse.swt.examples.ole.win32</artifactId>
- <version>3.1.100-SNAPSHOT</version>
+ <version>3.101.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <environments>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86_64</arch>
+ </environment>
+ </environments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top