Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 390020 | Differences between
and this patch

Collapse All | Expand All

(-)a/bundles/org.eclipse.swt.carbon.macosx/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>macosx</os>
30
    <os>macosx</os>
31
    <ws>carbon</ws>
31
    <ws>carbon</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>
(-)a/bundles/org.eclipse.swt.cocoa.macosx.x86_64/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>macosx</os>
30
    <os>macosx</os>
31
    <ws>cocoa</ws>
31
    <ws>cocoa</ws>
32
    <arch>x86_64</arch>
32
    <arch>x86_64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>
(-)a/bundles/org.eclipse.swt.cocoa.macosx/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>macosx</os>
30
    <os>macosx</os>
31
    <ws>cocoa</ws>
31
    <ws>cocoa</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.aix.ppc/pom.xml (+72 lines)
Lines 30-35 Link Here
30
    <os>aix</os>
30
    <os>aix</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ppc</arch>
32
    <arch>ppc</arch>
33
    <buildid>${buildId}</buildid>
34
33
  </properties>
35
  </properties>
34
   
36
   
35
  <!--dependencies>
37
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
43
    </dependency>
42
  </dependencies-->
44
  </dependencies-->
43
45
46
  <build>
47
    <plugins>
48
      <plugin>
49
        <artifactId>maven-antrun-plugin</artifactId>
50
        <version>1.7</version>
51
        <executions>
52
          <execution>
53
            <id>swtdownload</id>
54
            <phase>package</phase>
55
            <configuration>
56
              <target>
57
                <ant antfile="build.xml" target="swtdownload" />
58
              </target>
59
            </configuration>
60
            <goals>
61
              <goal>run</goal>
62
            </goals>
63
          </execution>
64
        </executions>
65
        <dependencies>
66
          <dependency>
67
            <groupId>com.sun</groupId>
68
            <artifactId>tools</artifactId>
69
            <version>0.0.0</version> 
70
            <scope>system</scope>
71
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
72
          </dependency>
73
          <dependency>
74
            <groupId>bsf</groupId>
75
            <artifactId>bsf</artifactId>
76
            <version>2.4.0</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>rhino</groupId>
80
            <artifactId>js</artifactId>
81
            <version>1.7R2</version>
82
          </dependency>
83
          <dependency>
84
            <groupId>org.apache.ant</groupId>
85
            <artifactId>ant-apache-bsf</artifactId>
86
            <version>1.8.3</version>
87
          </dependency>
88
          <dependency>
89
            <groupId>org.apache.ant</groupId>
90
            <artifactId>ant-nodeps</artifactId>
91
            <version>1.8.1</version>
92
          </dependency>
93
        </dependencies>
94
      </plugin>
95
      <plugin>
96
        <artifactId>maven-antrun-plugin</artifactId>
97
        <version>1.7</version>
98
        <executions>
99
          <execution>
100
            <id>copy-swtzip-to-target</id>
101
            <phase>package</phase>
102
            <goals>
103
              <goal>run</goal>
104
            </goals>
105
            <configuration>
106
              <target>
107
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
108
              </target>
109
            </configuration>
110
          </execution>
111
        </executions>
112
      </plugin>
113
    </plugins>
114
  </build>
115
44
  <!-- This has to be here. Profiles are not inheritable. -->
116
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
117
  <profiles>
46
    <profile>
118
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.aix.ppc64/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>aix</os>
30
    <os>aix</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ppc64</arch>
32
    <arch>ppc64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
   
35
   
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.hpux.ia64/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>hpux</os>
30
    <os>hpux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ia64</arch>
32
    <arch>ia64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
   
35
   
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.hpux.ia64_32/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>hpux</os>
30
    <os>hpux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ia64_32</arch>
32
    <arch>ia64_32</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
   
35
   
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.ia64/pom.xml (+72 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ia64</arch>
32
    <arch>ia64</arch>
33
    <buildid>${buildId}</buildid>
34
33
  </properties>
35
  </properties>
34
36
35
  <!--dependencies>
37
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
43
    </dependency>
42
  </dependencies-->
44
  </dependencies-->
43
45
46
  <build>
47
    <plugins>
48
      <plugin>
49
        <artifactId>maven-antrun-plugin</artifactId>
50
        <version>1.7</version>
51
        <executions>
52
          <execution>
53
            <id>swtdownload</id>
54
            <phase>package</phase>
55
            <configuration>
56
              <target>
57
                <ant antfile="build.xml" target="swtdownload" />
58
              </target>
59
            </configuration>
60
            <goals>
61
              <goal>run</goal>
62
            </goals>
63
          </execution>
64
        </executions>
65
        <dependencies>
66
          <dependency>
67
            <groupId>com.sun</groupId>
68
            <artifactId>tools</artifactId>
69
            <version>0.0.0</version> 
70
            <scope>system</scope>
71
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
72
          </dependency>
73
          <dependency>
74
            <groupId>bsf</groupId>
75
            <artifactId>bsf</artifactId>
76
            <version>2.4.0</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>rhino</groupId>
80
            <artifactId>js</artifactId>
81
            <version>1.7R2</version>
82
          </dependency>
83
          <dependency>
84
            <groupId>org.apache.ant</groupId>
85
            <artifactId>ant-apache-bsf</artifactId>
86
            <version>1.8.3</version>
87
          </dependency>
88
          <dependency>
89
            <groupId>org.apache.ant</groupId>
90
            <artifactId>ant-nodeps</artifactId>
91
            <version>1.8.1</version>
92
          </dependency>
93
        </dependencies>
94
      </plugin>
95
      <plugin>
96
        <artifactId>maven-antrun-plugin</artifactId>
97
        <version>1.7</version>
98
        <executions>
99
          <execution>
100
            <id>copy-swtzip-to-target</id>
101
            <phase>package</phase>
102
            <goals>
103
              <goal>run</goal>
104
            </goals>
105
            <configuration>
106
              <target>
107
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
108
              </target>
109
            </configuration>
110
          </execution>
111
        </executions>
112
      </plugin>
113
    </plugins>
114
  </build>
115
44
  <!-- This has to be here. Profiles are not inheritable. -->
116
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
117
  <profiles>
46
    <profile>
118
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.ppc/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ppc</arch>
32
    <arch>ppc</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.ppc64/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>ppc64</arch>
32
    <arch>ppc64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.s390/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>s390</arch>
32
    <arch>s390</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.s390x/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>s390x</arch>
32
    <arch>s390x</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.x86/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
   
35
   
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.linux.x86_64/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>x86_64</arch>
32
    <arch>x86_64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.solaris.sparc/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>solaris</os>
30
    <os>solaris</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>sparc</arch>
32
    <arch>sparc</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.gtk.solaris.x86/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>solaris</os>
30
    <os>solaris</os>
31
    <ws>gtk</ws>
31
    <ws>gtk</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.motif.aix.ppc/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>aix</os>
30
    <os>aix</os>
31
    <ws>motif</ws>
31
    <ws>motif</ws>
32
    <arch>ppc</arch>
32
    <arch>ppc</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.motif.hpux.PA_RISC/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>hpux</os>
30
    <os>hpux</os>
31
    <ws>motif</ws>
31
    <ws>motif</ws>
32
    <arch>PA_RISC</arch>
32
    <arch>PA_RISC</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.motif.hpux.ia64_32/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>hpux</os>
30
    <os>hpux</os>
31
    <ws>motif</ws>
31
    <ws>motif</ws>
32
    <arch>ia64_32</arch>
32
    <arch>ia64_32</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.motif.linux.x86/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>linux</os>
30
    <os>linux</os>
31
    <ws>motif</ws>
31
    <ws>motif</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.motif.solaris.sparc/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>solaris</os>
30
    <os>solaris</os>
31
    <ws>motif</ws>
31
    <ws>motif</ws>
32
    <arch>sparc</arch>
32
    <arch>sparc</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.photon.qnx.x86/pom.xml (+71 lines)
Lines 30-35 Link Here
30
    <os>qnx</os>
30
    <os>qnx</os>
31
    <ws>photon</ws>
31
    <ws>photon</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
35
  <!--dependencies>
36
  <!--dependencies>
Lines 41-46 Link Here
41
    </dependency>
42
    </dependency>
42
  </dependencies-->
43
  </dependencies-->
43
44
45
  <build>
46
    <plugins>
47
      <plugin>
48
        <artifactId>maven-antrun-plugin</artifactId>
49
        <version>1.7</version>
50
        <executions>
51
          <execution>
52
            <id>swtdownload</id>
53
            <phase>package</phase>
54
            <configuration>
55
              <target>
56
                <ant antfile="build.xml" target="swtdownload" />
57
              </target>
58
            </configuration>
59
            <goals>
60
              <goal>run</goal>
61
            </goals>
62
          </execution>
63
        </executions>
64
        <dependencies>
65
          <dependency>
66
            <groupId>com.sun</groupId>
67
            <artifactId>tools</artifactId>
68
            <version>0.0.0</version> 
69
            <scope>system</scope>
70
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
71
          </dependency>
72
          <dependency>
73
            <groupId>bsf</groupId>
74
            <artifactId>bsf</artifactId>
75
            <version>2.4.0</version>
76
          </dependency>
77
          <dependency>
78
            <groupId>rhino</groupId>
79
            <artifactId>js</artifactId>
80
            <version>1.7R2</version>
81
          </dependency>
82
          <dependency>
83
            <groupId>org.apache.ant</groupId>
84
            <artifactId>ant-apache-bsf</artifactId>
85
            <version>1.8.3</version>
86
          </dependency>
87
          <dependency>
88
            <groupId>org.apache.ant</groupId>
89
            <artifactId>ant-nodeps</artifactId>
90
            <version>1.8.1</version>
91
          </dependency>
92
        </dependencies>
93
      </plugin>
94
      <plugin>
95
        <artifactId>maven-antrun-plugin</artifactId>
96
        <version>1.7</version>
97
        <executions>
98
          <execution>
99
            <id>copy-swtzip-to-target</id>
100
            <phase>package</phase>
101
            <goals>
102
              <goal>run</goal>
103
            </goals>
104
            <configuration>
105
              <target>
106
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
107
              </target>
108
            </configuration>
109
          </execution>
110
        </executions>
111
      </plugin>
112
    </plugins>
113
  </build>
114
44
  <!-- This has to be here. Profiles are not inheritable. -->
115
  <!-- This has to be here. Profiles are not inheritable. -->
45
  <profiles>
116
  <profiles>
46
    <profile>
117
    <profile>
(-)a/bundles/org.eclipse.swt.win32.wce_ppc.arm/pom.xml (+72 lines)
Lines 30-37 Link Here
30
    <os>wce_ppc</os>
30
    <os>wce_ppc</os>
31
    <ws>win32</ws>
31
    <ws>win32</ws>
32
    <arch>arm</arch>
32
    <arch>arm</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}-${arch}-j2me.zip" todir="target" />
98
                <move file="swt-${buildId}-${ws}-${os}-${arch}-j2se.zip" todir="target" />
99
              </target>
100
            </configuration>
101
          </execution>
102
        </executions>
103
      </plugin>
104
    </plugins>
105
  </build>
106
35
  <!-- This has to be here. Profiles are not inheritable. -->
107
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
108
  <profiles>
37
    <profile>
109
    <profile>
(-)a/bundles/org.eclipse.swt.win32.win32.ia64/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>win32</os>
30
    <os>win32</os>
31
    <ws>win32</ws>
31
    <ws>win32</ws>
32
    <arch>ia64</arch>
32
    <arch>ia64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>
(-)a/bundles/org.eclipse.swt.win32.win32.x86/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>win32</os>
30
    <os>win32</os>
31
    <ws>win32</ws>
31
    <ws>win32</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>
(-)a/bundles/org.eclipse.swt.win32.win32.x86_64/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>win32</os>
30
    <os>win32</os>
31
    <ws>win32</ws>
31
    <ws>win32</ws>
32
    <arch>x86_64</arch>
32
    <arch>x86_64</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>
(-)a/bundles/org.eclipse.swt.wpf.win32.x86/pom.xml (+71 lines)
Lines 30-37 Link Here
30
    <os>win32</os>
30
    <os>win32</os>
31
    <ws>wpf</ws>
31
    <ws>wpf</ws>
32
    <arch>x86</arch>
32
    <arch>x86</arch>
33
    <buildid>${buildId}</buildid>
33
  </properties>
34
  </properties>
34
35
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-antrun-plugin</artifactId>
40
        <version>1.7</version>
41
        <executions>
42
          <execution>
43
            <id>swtdownload</id>
44
            <phase>package</phase>
45
            <configuration>
46
              <target>
47
                <ant antfile="build.xml" target="swtdownload" />
48
              </target>
49
            </configuration>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
          </execution>
54
        </executions>
55
        <dependencies>
56
          <dependency>
57
            <groupId>com.sun</groupId>
58
            <artifactId>tools</artifactId>
59
            <version>0.0.0</version> 
60
            <scope>system</scope>
61
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
62
          </dependency>
63
          <dependency>
64
            <groupId>bsf</groupId>
65
            <artifactId>bsf</artifactId>
66
            <version>2.4.0</version>
67
          </dependency>
68
          <dependency>
69
            <groupId>rhino</groupId>
70
            <artifactId>js</artifactId>
71
            <version>1.7R2</version>
72
          </dependency>
73
          <dependency>
74
            <groupId>org.apache.ant</groupId>
75
            <artifactId>ant-apache-bsf</artifactId>
76
            <version>1.8.3</version>
77
          </dependency>
78
          <dependency>
79
            <groupId>org.apache.ant</groupId>
80
            <artifactId>ant-nodeps</artifactId>
81
            <version>1.8.1</version>
82
          </dependency>
83
        </dependencies>
84
      </plugin>
85
      <plugin>
86
        <artifactId>maven-antrun-plugin</artifactId>
87
        <version>1.7</version>
88
        <executions>
89
          <execution>
90
            <id>copy-swtzip-to-target</id>
91
            <phase>package</phase>
92
            <goals>
93
              <goal>run</goal>
94
            </goals>
95
            <configuration>
96
              <target>
97
                <move file="swt-${buildId}-${ws}-${os}-${arch}.zip" todir="target" />
98
              </target>
99
            </configuration>
100
          </execution>
101
        </executions>
102
      </plugin>
103
    </plugins>
104
  </build>
105
35
  <!-- This has to be here. Profiles are not inheritable. -->
106
  <!-- This has to be here. Profiles are not inheritable. -->
36
  <profiles>
107
  <profiles>
37
    <profile>
108
    <profile>

Return to bug 390020