| author | Thanh Ha | 2012-11-22 16:56:14 (EST) |
|---|---|---|
| committer | Bogdan Gheorghe | 2012-11-22 16:59:56 (EST) |
| commit | ee79e5a35fd07438fd172fc79e7031f4a93d7d0f (patch) (side-by-side diff) | |
| tree | 792ffe0afca4b1d13fcf6efe54e255ba4a6f7031 | |
| parent | a057288faf72925018659d5a0356af425d2672d5 (diff) | |
| download | eclipse.platform.swt.binaries-ee79e5a35fd07438fd172fc79e7031f4a93d7d0f.zip eclipse.platform.swt.binaries-ee79e5a35fd07438fd172fc79e7031f4a93d7d0f.tar.gz eclipse.platform.swt.binaries-ee79e5a35fd07438fd172fc79e7031f4a93d7d0f.tar.bz2 | |
27 files changed, 1920 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt.carbon.macosx/pom.xml b/bundles/org.eclipse.swt.carbon.macosx/pom.xml index 546984f..8afde99 100644 --- a/bundles/org.eclipse.swt.carbon.macosx/pom.xml +++ b/bundles/org.eclipse.swt.carbon.macosx/pom.xml @@ -30,8 +30,79 @@ <os>macosx</os> <ws>carbon</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml b/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml index 5ee6004..c4acfac 100644 --- a/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml +++ b/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml @@ -30,8 +30,79 @@ <os>macosx</os> <ws>cocoa</ws> <arch>x86_64</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.cocoa.macosx/pom.xml b/bundles/org.eclipse.swt.cocoa.macosx/pom.xml index 2ebce47..208058e 100644 --- a/bundles/org.eclipse.swt.cocoa.macosx/pom.xml +++ b/bundles/org.eclipse.swt.cocoa.macosx/pom.xml @@ -30,8 +30,79 @@ <os>macosx</os> <ws>cocoa</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml b/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml index 88c4488..e0b31c9 100644 --- a/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml +++ b/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml @@ -30,6 +30,8 @@ <os>aix</os> <ws>gtk</ws> <arch>ppc</arch> + <buildid>${buildId}</buildid> + </properties> <!--dependencies> @@ -41,6 +43,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml b/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml index c21ef12..772bc37 100644 --- a/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml +++ b/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml @@ -30,6 +30,7 @@ <os>aix</os> <ws>gtk</ws> <arch>ppc64</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml b/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml index b8f186b..1cb871e 100644 --- a/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml +++ b/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml @@ -30,6 +30,7 @@ <os>hpux</os> <ws>gtk</ws> <arch>ia64</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.hpux.ia64_32/pom.xml b/bundles/org.eclipse.swt.gtk.hpux.ia64_32/pom.xml index 9463871..3551d6e 100644 --- a/bundles/org.eclipse.swt.gtk.hpux.ia64_32/pom.xml +++ b/bundles/org.eclipse.swt.gtk.hpux.ia64_32/pom.xml @@ -30,6 +30,7 @@ <os>hpux</os> <ws>gtk</ws> <arch>ia64_32</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml b/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml index 5ec5254..f6b2e59 100644 --- a/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml @@ -30,6 +30,8 @@ <os>linux</os> <ws>gtk</ws> <arch>ia64</arch> + <buildid>${buildId}</buildid> + </properties> <!--dependencies> @@ -41,6 +43,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml b/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml index 633c256..cae551d 100644 --- a/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>gtk</ws> <arch>ppc</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml b/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml index f5ce20d..1afff85 100644 --- a/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>gtk</ws> <arch>ppc64</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml b/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml index 60a048f..45d07c9 100644 --- a/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>gtk</ws> <arch>s390</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml b/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml index c28ad21..c229126 100644 --- a/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>gtk</ws> <arch>s390x</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml b/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml index bd80804..098d076 100644 --- a/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>gtk</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml b/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml index dc1c4ba..b368c1b 100644 --- a/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml +++ b/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>gtk</ws> <arch>x86_64</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml b/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml index c7af1e9..a9fe7d8 100644 --- a/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml +++ b/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml @@ -30,6 +30,7 @@ <os>solaris</os> <ws>gtk</ws> <arch>sparc</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml b/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml index ce7ba77..2f5e087 100644 --- a/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml +++ b/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml @@ -30,6 +30,7 @@ <os>solaris</os> <ws>gtk</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml b/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml index ef0f6be..bd3c78e 100644 --- a/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml +++ b/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml @@ -30,6 +30,7 @@ <os>aix</os> <ws>motif</ws> <arch>ppc</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.motif.hpux.PA_RISC/pom.xml b/bundles/org.eclipse.swt.motif.hpux.PA_RISC/pom.xml index e67e536..fa05dd2 100644 --- a/bundles/org.eclipse.swt.motif.hpux.PA_RISC/pom.xml +++ b/bundles/org.eclipse.swt.motif.hpux.PA_RISC/pom.xml @@ -30,6 +30,7 @@ <os>hpux</os> <ws>motif</ws> <arch>PA_RISC</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.motif.hpux.ia64_32/pom.xml b/bundles/org.eclipse.swt.motif.hpux.ia64_32/pom.xml index b74b0c1..3f30e6e 100644 --- a/bundles/org.eclipse.swt.motif.hpux.ia64_32/pom.xml +++ b/bundles/org.eclipse.swt.motif.hpux.ia64_32/pom.xml @@ -30,6 +30,7 @@ <os>hpux</os> <ws>motif</ws> <arch>ia64_32</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.motif.linux.x86/pom.xml b/bundles/org.eclipse.swt.motif.linux.x86/pom.xml index 546d2f0..69e3909 100644 --- a/bundles/org.eclipse.swt.motif.linux.x86/pom.xml +++ b/bundles/org.eclipse.swt.motif.linux.x86/pom.xml @@ -30,6 +30,7 @@ <os>linux</os> <ws>motif</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml b/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml index 95c6cee..0a191e1 100644 --- a/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml +++ b/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml @@ -30,6 +30,7 @@ <os>solaris</os> <ws>motif</ws> <arch>sparc</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml b/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml index 81c6a82..5e7dfd4 100644 --- a/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml +++ b/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml @@ -30,6 +30,7 @@ <os>qnx</os> <ws>photon</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> <!--dependencies> @@ -41,6 +42,76 @@ </dependency> </dependencies--> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml b/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml index 8b0384e..339b006 100644 --- a/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml +++ b/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml @@ -30,8 +30,80 @@ <os>wce_ppc</os> <ws>win32</ws> <arch>arm</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}-j2me.zip" todir="target" /> + <move file="swt-${buildId}-${ws}-${os}-${arch}-j2se.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml b/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml index cdf0f3a..ecc428e 100644 --- a/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml +++ b/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml @@ -30,8 +30,79 @@ <os>win32</os> <ws>win32</ws> <arch>ia64</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.win32.win32.x86/pom.xml b/bundles/org.eclipse.swt.win32.win32.x86/pom.xml index ecbe0d5..e38012d 100644 --- a/bundles/org.eclipse.swt.win32.win32.x86/pom.xml +++ b/bundles/org.eclipse.swt.win32.win32.x86/pom.xml @@ -30,8 +30,79 @@ <os>win32</os> <ws>win32</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml b/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml index c291752..1c3fdda 100644 --- a/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml +++ b/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml @@ -30,8 +30,79 @@ <os>win32</os> <ws>win32</ws> <arch>x86_64</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> diff --git a/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml b/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml index 076d536..85f478e 100644 --- a/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml +++ b/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml @@ -30,8 +30,79 @@ <os>win32</os> <ws>wpf</ws> <arch>x86</arch> + <buildid>${buildId}</buildid> </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>swtdownload</id> + <phase>package</phase> + <configuration> + <target> + <ant antfile="build.xml" target="swtdownload" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>0.0.0</version> + <scope>system</scope> + <systemPath>${java.home}/../lib/tools.jar</systemPath> + </dependency> + <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> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <executions> + <execution> + <id>copy-swtzip-to-target</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target> + <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" /> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <!-- This has to be here. Profiles are not inheritable. --> <profiles> <profile> |

