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 223893 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 v3
swt.binaries.patch (text/plain), 71.43 KB, created by
Paul Webster
on 2012-11-22 16:50:04 EST
(
hide
)
Description:
swtdownload patch v3
Filename:
MIME Type:
Creator:
Paul Webster
Created:
2012-11-22 16:50:04 EST
Size:
71.43 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..dd5c2ba 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 a0d9bcb..6c36082 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 d0ab036..fca8080 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 6867b45..d8c2c88 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 56992b9..2f37b28 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 3b0a6da..bc707a5 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 0e4d4df..f58d6ec 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 bc80992..2646a39 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 dc35c4e..a7a1730 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 ac766e5..48f4a2d 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 3514ff1..35e586a 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 e1117ba..19df22b 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 e749780..d0e7e52 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 df00d5a..e24e7d9 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 3608966..52feb7f 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 b830972..3d66b1a 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 d62bc61..a26ba5a 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 b0e9fd9..f9cba9c 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 db7e612..9b0e18a 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 b65e96e..d2fd07e 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 cd2c03d..14cd3b2 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 419a348..1ef0ef9 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 6085e62..c56886e 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 5a2403e..6817143 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 fc82a38..67c98e5 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 7fe7755..3d2566a 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 b82209a..2288c71 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>
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