Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/binaries-parent/pom.xml61
-rw-r--r--bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml91
-rw-r--r--bundles/org.eclipse.swt.cocoa.macosx/pom.xml91
-rw-r--r--bundles/org.eclipse.swt.gtk.linux.x86/pom.xml100
-rw-r--r--bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml100
-rw-r--r--bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml92
-rw-r--r--bundles/org.eclipse.swt.win32.win32.x86/pom.xml91
-rw-r--r--bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml91
-rw-r--r--pom.xml39
9 files changed, 756 insertions, 0 deletions
diff --git a/bundles/binaries-parent/pom.xml b/bundles/binaries-parent/pom.xml
new file mode 100644
index 000000000..b8823724c
--- /dev/null
+++ b/bundles/binaries-parent/pom.xml
@@ -0,0 +1,61 @@
+<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.binaries</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>binaries-parent</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>0.14.1</version>
+ <configuration>
+ <environments>
+ <environment>
+ <os>${os}</os>
+ <ws>${ws}</ws>
+ <arch>${arch}</arch>
+ </environment>
+ </environments>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>normal</id>
+ <phase>compile</phase>
+ <configuration>
+ <target>
+ <property name="build.compiler" value="extJavac" />
+ <delete dir="org" failonerror="false" />
+ <delete dir="src" failonerror="false" />
+ <ant antfile="build.xml" target="build.jars" />
+ <copy toDir=".">
+ <fileset dir="@dot/" />
+ </copy>
+ <copy toDir="src/org/">
+ <fileset dir="temp.folder/@dot.src/org/" />
+ </copy>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml b/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml
new file mode 100644
index 000000000..48c5a7b77
--- /dev/null
+++ b/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml
@@ -0,0 +1,91 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.cocoa.macosx.x86_64</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86_64</arch>
+ </properties>
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>cocoa.macosx.x86_64</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/bundles/org.eclipse.swt.cocoa.macosx/pom.xml b/bundles/org.eclipse.swt.cocoa.macosx/pom.xml
new file mode 100644
index 000000000..4c76fc7a6
--- /dev/null
+++ b/bundles/org.eclipse.swt.cocoa.macosx/pom.xml
@@ -0,0 +1,91 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.cocoa.macosx</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86</arch>
+ </properties>
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>cocoa.macosx.x86</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml b/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml
new file mode 100644
index 000000000..d9549f078
--- /dev/null
+++ b/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml
@@ -0,0 +1,100 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86</arch>
+ </properties>
+
+ <!--dependencies>
+ <dependency>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>binaries-parent</artifactId>
+ <version>1.0</version>
+ <type>pom</type>
+ </dependency>
+ </dependencies-->
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>linux.gtk.x86</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml b/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml
new file mode 100644
index 000000000..579d09cb9
--- /dev/null
+++ b/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml
@@ -0,0 +1,100 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86_64</arch>
+ </properties>
+
+ <!--dependencies>
+ <dependency>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>binaries-parent</artifactId>
+ <version>1.0</version>
+ <type>pom</type>
+ </dependency>
+ </dependencies-->
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>linux.gtk.x86_64</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml b/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml
new file mode 100644
index 000000000..dc120a6e9
--- /dev/null
+++ b/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml
@@ -0,0 +1,92 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.win32.wce_ppc.arm</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>wce_ppc</os>
+ <ws>win32</ws>
+ <arch>arm</arch>
+ </properties>
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>win32.wce_ppc.arm</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/bundles/org.eclipse.swt.win32.win32.x86/pom.xml b/bundles/org.eclipse.swt.win32.win32.x86/pom.xml
new file mode 100644
index 000000000..23b248235
--- /dev/null
+++ b/bundles/org.eclipse.swt.win32.win32.x86/pom.xml
@@ -0,0 +1,91 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.win32.win32.x86</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86</arch>
+ </properties>
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>win32.win32.x86</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml b/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml
new file mode 100644
index 000000000..58978e75d
--- /dev/null
+++ b/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml
@@ -0,0 +1,91 @@
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>binaries-parent</artifactId>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ <relativePath>../binaries-parent/</relativePath>
+ </parent>
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId>
+ <version>3.100.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86_64</arch>
+ </properties>
+
+ <!-- This has to be here. Profiles are not inheritable. -->
+ <profiles>
+ <profile>
+ <id>build-natives</id>
+ <activation>
+ <property>
+ <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
+ <name>native</name>
+ <value>win32.win32.x86_64</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>natives</id>
+ <phase>process-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" target="build_libraries" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000000000..4eb80bfbe
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+###############################################################################
+# Copyright (c) 2012 Red Hat, Inc.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
+###############################################################################
+-->
+<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>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>eclipse.platform.swt.binaries</groupId>
+ <artifactId>eclipse.platform.swt.binaries</artifactId>
+ <version>3.8.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module>
+ <module>bundles/org.eclipse.swt.gtk.linux.x86</module>
+ <module>bundles/org.eclipse.swt.win32.win32.x86_64</module>
+ <module>bundles/org.eclipse.swt.win32.win32.x86</module>
+ <module>bundles/org.eclipse.swt.cocoa.macosx</module>
+ <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module>
+ <module>bundles/org.eclipse.swt.win32.wce_ppc.arm</module>
+ </modules>
+</project>

Back to the top