| author | Krzysztof Daniel | 2012-09-10 14:10:45 (EDT) |
|---|---|---|
| committer | Silenio Quarti | 2012-09-12 12:07:35 (EDT) |
| commit | 258484bfd93a1f85380417bf890275422490df4a (patch) (side-by-side diff) | |
| tree | 4839627ec30d490516e0ea9c795c1db32e067283 | |
| parent | 8947df53182404ba6912831b9784d9147ae94f72 (diff) | |
| download | eclipse.platform.swt-258484bfd93a1f85380417bf890275422490df4a.zip eclipse.platform.swt-258484bfd93a1f85380417bf890275422490df4a.tar.gz eclipse.platform.swt-258484bfd93a1f85380417bf890275422490df4a.tar.bz2 | |
Bug 381192 Tycho support
| -rw-r--r-- | bundles/org.eclipse.swt/pom.xml | 19 | ||||
| -rw-r--r-- | examples/org.eclipse.swt.examples.ole.win32/pom.xml | 24 | ||||
| -rw-r--r-- | pom.xml | 2 |
3 files changed, 41 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/pom.xml b/bundles/org.eclipse.swt/pom.xml index de5521e..7e1ebfd 100644 --- a/bundles/org.eclipse.swt/pom.xml +++ b/bundles/org.eclipse.swt/pom.xml @@ -8,10 +8,12 @@ Contributors: Igor Fedorenko - initial implementation + Krzysztof Daniel, Red Hat, Inc. - building native SWT parts. --> -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +<project + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>eclipse.platform.swt</artifactId> @@ -23,4 +25,17 @@ <artifactId>org.eclipse.swt</artifactId> <version>3.100.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <dependency-resolution> + <optionalDependencies>ignore</optionalDependencies> + </dependency-resolution> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/examples/org.eclipse.swt.examples.ole.win32/pom.xml b/examples/org.eclipse.swt.examples.ole.win32/pom.xml index dc8cedc..529468e 100644 --- a/examples/org.eclipse.swt.examples.ole.win32/pom.xml +++ b/examples/org.eclipse.swt.examples.ole.win32/pom.xml @@ -23,4 +23,28 @@ <artifactId>org.eclipse.swt.examples.ole.win32</artifactId> <version>3.1.100-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> @@ -27,7 +27,6 @@ <packaging>pom</packaging>
<modules>
-<!--
<module>bundles/org.eclipse.swt</module>
<module>bundles/org.eclipse.swt.opengl</module>
<module>bundles/org.eclipse.swt.tools</module>
@@ -39,7 +38,6 @@ <module>examples/org.eclipse.swt.examples.layouts</module>
<module>examples/org.eclipse.swt.examples.ole.win32</module>
<module>examples/org.eclipse.swt.examples.paint</module>
- -->
<module>tests/org.eclipse.swt.tests</module>
</modules>
</project>
|

