Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 223122 Details for
Bug 390020
Create the swt-<buildId>-gtk-linux-x86.zip files
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
swtdownload patch v2
swt.patch (text/plain), 75.50 KB, created by
Thanh Ha
on 2012-11-02 12:59:43 EDT
(
hide
)
Description:
swtdownload patch v2
Filename:
MIME Type:
Creator:
Thanh Ha
Created:
2012-11-02 12:59:43 EDT
Size:
75.50 KB
patch
obsolete
>diff --git a/bundles/org.eclipse.swt.carbon.macosx/pom.xml b/bundles/org.eclipse.swt.carbon.macosx/pom.xml >index eea63ac..92059a6 100644 >--- a/bundles/org.eclipse.swt.carbon.macosx/pom.xml >+++ b/bundles/org.eclipse.swt.carbon.macosx/pom.xml >@@ -30,8 +30,82 @@ > <os>macosx</os> > <ws>carbon</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 a0d9bcb..c8a42cb 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,82 @@ > <os>macosx</os> > <ws>cocoa</ws> > <arch>x86_64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 d0ab036..1c1e7a8 100644 >--- a/bundles/org.eclipse.swt.cocoa.macosx/pom.xml >+++ b/bundles/org.eclipse.swt.cocoa.macosx/pom.xml >@@ -30,8 +30,82 @@ > <os>macosx</os> > <ws>cocoa</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 6867b45..7d78b7a 100644 >--- a/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml >@@ -30,6 +30,10 @@ > <os>aix</os> > <ws>gtk</ws> > <arch>ppc</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 56992b9..e5981c6 100644 >--- a/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml >@@ -30,6 +30,10 @@ > <os>aix</os> > <ws>gtk</ws> > <arch>ppc64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 3b0a6da..32697ea 100644 >--- a/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml >@@ -30,6 +30,10 @@ > <os>hpux</os> > <ws>gtk</ws> > <arch>ia64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 0e4d4df..354decb 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,10 @@ > <os>hpux</os> > <ws>gtk</ws> > <arch>ia64_32</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 bc80992..8d4bbf6 100644 >--- a/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>ia64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 dc35c4e..3ce4cf9 100644 >--- a/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>ppc</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 ac766e5..2495ace 100644 >--- a/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>ppc64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 3514ff1..de973b1 100644 >--- a/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>s390</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 e1117ba..f1aa59d 100644 >--- a/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>s390x</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 e749780..2bb8c3a 100644 >--- a/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 df00d5a..0107ae1 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,10 @@ > <os>linux</os> > <ws>gtk</ws> > <arch>x86_64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 3608966..c37373d 100644 >--- a/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml >@@ -30,6 +30,10 @@ > <os>solaris</os> > <ws>gtk</ws> > <arch>sparc</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 b830972..af2f5b9 100644 >--- a/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml >+++ b/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml >@@ -30,6 +30,10 @@ > <os>solaris</os> > <ws>gtk</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 d62bc61..18e9219 100644 >--- a/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml >+++ b/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml >@@ -30,6 +30,10 @@ > <os>aix</os> > <ws>motif</ws> > <arch>ppc</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 b0e9fd9..35efaa9 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,10 @@ > <os>hpux</os> > <ws>motif</ws> > <arch>PA_RISC</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 db7e612..60ea9a9 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,10 @@ > <os>hpux</os> > <ws>motif</ws> > <arch>ia64_32</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 b65e96e..b059353 100644 >--- a/bundles/org.eclipse.swt.motif.linux.x86/pom.xml >+++ b/bundles/org.eclipse.swt.motif.linux.x86/pom.xml >@@ -30,6 +30,10 @@ > <os>linux</os> > <ws>motif</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 cd2c03d..74835ea 100644 >--- a/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml >+++ b/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml >@@ -30,6 +30,10 @@ > <os>solaris</os> > <ws>motif</ws> > <arch>sparc</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 419a348..a689d7a 100644 >--- a/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml >+++ b/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml >@@ -30,6 +30,10 @@ > <os>qnx</os> > <ws>photon</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</buildid> > </properties> > > <!--dependencies> >@@ -41,6 +45,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 6085e62..c1c6b4d 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,83 @@ > <os>wce_ppc</os> > <ws>win32</ws> > <arch>arm</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 5a2403e..dc05cd9 100644 >--- a/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml >+++ b/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml >@@ -30,8 +30,82 @@ > <os>win32</os> > <ws>win32</ws> > <arch>ia64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 fc82a38..905f340 100644 >--- a/bundles/org.eclipse.swt.win32.win32.x86/pom.xml >+++ b/bundles/org.eclipse.swt.win32.win32.x86/pom.xml >@@ -30,8 +30,82 @@ > <os>win32</os> > <ws>win32</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 7fe7755..0e75ca5 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,82 @@ > <os>win32</os> > <ws>win32</ws> > <arch>x86_64</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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 b82209a..bb49b54 100644 >--- a/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml >+++ b/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml >@@ -30,8 +30,82 @@ > <os>win32</os> > <ws>wpf</ws> > <arch>x86</arch> >+ >+ <!-- need to define build.id in order to allow parameter to be overridden via commandline --> >+ <build.id>I${maven.build.timestamp}</build.id> >+ <buildid>${build.id}</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>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 390020
:
222249
|
223122
|
223123
|
223893