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 386377
Collapse All | Expand All

(-)a/bundles/org.eclipse.equinox.executable/pom.xml (-265 lines)
Lines 24-294 Link Here
24
24
25
  <profiles>
25
  <profiles>
26
    <profile>
26
    <profile>
27
      <id>build-native-launchers-gtk.linux.x86_64</id>
28
      <activation>
29
        <property>
30
          <name>native</name>
31
          <value>gtk.linux.x86_64</value>
32
        </property>
33
      </activation>
34
      <build>
35
        <plugins>
36
          <plugin>
37
            <artifactId>maven-antrun-plugin</artifactId>
38
            <version> 1.7 </version>
39
            <executions>
40
              <execution>
41
                <id>compile-executable-natives</id>
42
                <phase>generate-resources</phase>
43
                <configuration>
44
                  <target>
45
                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
46
                  </target>
47
                </configuration>
48
                <goals>
49
                  <goal>run</goal>
50
                </goals>
51
              </execution>
52
            </executions>
53
            <dependencies>
54
              <dependency>
55
                <groupId>bsf</groupId>
56
                <artifactId>bsf</artifactId>
57
                <version>2.4.0</version>
58
              </dependency>
59
              <dependency>
60
                <groupId>rhino</groupId>
61
                <artifactId>js</artifactId>
62
                <version>1.7R2</version>
63
              </dependency>
64
              <dependency>
65
                <groupId>org.apache.ant</groupId>
66
                <artifactId>ant-apache-bsf</artifactId>
67
                <version>1.8.3</version>
68
              </dependency>
69
              <dependency>
70
                <groupId>org.apache.ant</groupId>
71
                <artifactId>ant-nodeps</artifactId>
72
                <version>1.8.1</version>
73
              </dependency>
74
            </dependencies>
75
          </plugin>
76
        </plugins>
77
      </build>
78
    </profile>
79
    <profile>
80
      <id>build-native-launchers-gtk.linux.x86</id>
81
      <activation>
82
        <property>
83
          <name>native</name>
84
          <value>gtk.linux.x86</value>
85
        </property>
86
      </activation>
87
      <build>
88
        <plugins>
89
          <plugin>
90
            <artifactId>maven-antrun-plugin</artifactId>
91
            <version> 1.7 </version>
92
            <executions>
93
              <execution>
94
                <id>compile-executable-natives</id>
95
                <phase>generate-resources</phase>
96
                <configuration>
97
                  <target>
98
                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
99
                  </target>
100
                </configuration>
101
                <goals>
102
                  <goal>run</goal>
103
                </goals>
104
              </execution>
105
            </executions>
106
            <dependencies>
107
              <dependency>
108
                <groupId>bsf</groupId>
109
                <artifactId>bsf</artifactId>
110
                <version>2.4.0</version>
111
              </dependency>
112
              <dependency>
113
                <groupId>rhino</groupId>
114
                <artifactId>js</artifactId>
115
                <version>1.7R2</version>
116
              </dependency>
117
              <dependency>
118
                <groupId>org.apache.ant</groupId>
119
                <artifactId>ant-apache-bsf</artifactId>
120
                <version>1.8.3</version>
121
              </dependency>
122
              <dependency>
123
                <groupId>org.apache.ant</groupId>
124
                <artifactId>ant-nodeps</artifactId>
125
                <version>1.8.1</version>
126
              </dependency>
127
            </dependencies>
128
          </plugin>
129
        </plugins>
130
      </build>
131
    </profile>
132
    <profile>
133
      <id>build-native-launchers-win32.win32.x86_64</id>
134
      <activation>
135
        <property>
136
          <name>native</name>
137
          <value>win32.win32.x86_64</value>
138
        </property>
139
      </activation>
140
      <build>
141
        <plugins>
142
          <plugin>
143
            <artifactId>maven-antrun-plugin</artifactId>
144
            <version> 1.7 </version>
145
            <executions>
146
              <execution>
147
                <id>compile-executable-natives</id>
148
                <phase>generate-resources</phase>
149
                <configuration>
150
                  <target>
151
                    <ant antfile="build.xml" dir="library/win32/" target="build_eclipse"/>
152
                  </target>
153
                </configuration>
154
                <goals>
155
                  <goal>run</goal>
156
                </goals>
157
              </execution>
158
            </executions>
159
            <dependencies>
160
              <dependency>
161
                <groupId>bsf</groupId>
162
                <artifactId>bsf</artifactId>
163
                <version>2.4.0</version>
164
              </dependency>
165
              <dependency>
166
                <groupId>rhino</groupId>
167
                <artifactId>js</artifactId>
168
                <version>1.7R2</version>
169
              </dependency>
170
              <dependency>
171
                <groupId>org.apache.ant</groupId>
172
                <artifactId>ant-apache-bsf</artifactId>
173
                <version>1.8.3</version>
174
              </dependency>
175
              <dependency>
176
                <groupId>org.apache.ant</groupId>
177
                <artifactId>ant-nodeps</artifactId>
178
                <version>1.8.1</version>
179
              </dependency>
180
            </dependencies>
181
          </plugin>
182
        </plugins>
183
      </build>
184
    </profile>
185
    <profile>
186
      <id>build-native-launchers-win32.win32.x86</id>
187
      <activation>
188
        <property>
189
          <name>native</name>
190
          <value>win32.win32.x86</value>
191
        </property>
192
      </activation>
193
      <build>
194
        <plugins>
195
          <plugin>
196
            <artifactId>maven-antrun-plugin</artifactId>
197
            <version> 1.7 </version>
198
            <executions>
199
              <execution>
200
                <id>compile-executable-natives</id>
201
                <phase>generate-resources</phase>
202
                <configuration>
203
                  <target>
204
                    <ant antfile="build.xml" dir="library/win32/" target="build_eclipse"/>
205
                  </target>
206
                </configuration>
207
                <goals>
208
                  <goal>run</goal>
209
                </goals>
210
              </execution>
211
            </executions>
212
            <dependencies>
213
              <dependency>
214
                <groupId>bsf</groupId>
215
                <artifactId>bsf</artifactId>
216
                <version>2.4.0</version>
217
              </dependency>
218
              <dependency>
219
                <groupId>rhino</groupId>
220
                <artifactId>js</artifactId>
221
                <version>1.7R2</version>
222
              </dependency>
223
              <dependency>
224
                <groupId>org.apache.ant</groupId>
225
                <artifactId>ant-apache-bsf</artifactId>
226
                <version>1.8.3</version>
227
              </dependency>
228
              <dependency>
229
                <groupId>org.apache.ant</groupId>
230
                <artifactId>ant-nodeps</artifactId>
231
                <version>1.8.1</version>
232
              </dependency>
233
            </dependencies>
234
          </plugin>
235
        </plugins>
236
      </build>
237
    </profile>
238
    <profile>
239
      <id>build-native-launchers-cocoa.macosx.x86_64</id>
240
      <activation>
241
        <property>
242
          <name>native</name>
243
          <value>cocoa.macosx.x86_64</value>
244
        </property>
245
      </activation>
246
      <build>
247
        <plugins>
248
          <plugin>
249
            <artifactId>maven-antrun-plugin</artifactId>
250
            <version> 1.7 </version>
251
            <executions>
252
              <execution>
253
                <id>compile-executable-natives</id>
254
                <phase>generate-resources</phase>
255
                <configuration>
256
                  <target>
257
                    <ant antfile="build.xml" dir="library/carbon/" target="build_eclipse"/>
258
                  </target>
259
                </configuration>
260
                <goals>
261
                  <goal>run</goal>
262
                </goals>
263
              </execution>
264
            </executions>
265
            <dependencies>
266
              <dependency>
267
                <groupId>bsf</groupId>
268
                <artifactId>bsf</artifactId>
269
                <version>2.4.0</version>
270
              </dependency>
271
              <dependency>
272
                <groupId>rhino</groupId>
273
                <artifactId>js</artifactId>
274
                <version>1.7R2</version>
275
              </dependency>
276
              <dependency>
277
                <groupId>org.apache.ant</groupId>
278
                <artifactId>ant-apache-bsf</artifactId>
279
                <version>1.8.3</version>
280
              </dependency>
281
              <dependency>
282
                <groupId>org.apache.ant</groupId>
283
                <artifactId>ant-nodeps</artifactId>
284
                <version>1.8.1</version>
285
              </dependency>
286
            </dependencies>
287
          </plugin>
288
        </plugins>
289
      </build>
290
    </profile>
291
    <profile>
292
      <id>assemble-launchers</id>
27
      <id>assemble-launchers</id>
293
      <activation>
28
      <activation>
294
        <property>
29
        <property>
(-)a/bundles/org.eclipse.equinox.launcher.cocoa.macosx.x86_64/pom.xml (-1 / +55 lines)
Lines 28-32 Link Here
28
    <ws>cocoa</ws>
28
    <ws>cocoa</ws>
29
    <arch>x86_64</arch>
29
    <arch>x86_64</arch>
30
  </properties>
30
  </properties>
31
31
	<profiles>
32
	 <profile>
33
      <id>build-native-launchers-cocoa.macosx.x86_64</id>
34
      <activation>
35
        <property>
36
          <name>native</name>
37
          <value>cocoa.macosx.x86_64</value>
38
        </property>
39
      </activation>
40
      <build>
41
        <plugins>
42
          <plugin>
43
            <artifactId>maven-antrun-plugin</artifactId>
44
            <version> 1.7 </version>
45
            <executions>
46
              <execution>
47
                <id>compile-executable-natives</id>
48
                <phase>generate-resources</phase>
49
                <configuration>
50
                  <target>
51
                    <ant antfile="../../../../features/org.eclipse.equinox.executable.feature/library/carbon/build.xml" dir="../../features/org.eclipse.equinox.executable.feature/library/carbon/" target="build_eclipse"/>
52
                  </target>
53
                </configuration>
54
                <goals>
55
                  <goal>run</goal>
56
                </goals>
57
              </execution>
58
            </executions>
59
            <dependencies>
60
              <dependency>
61
                <groupId>bsf</groupId>
62
                <artifactId>bsf</artifactId>
63
                <version>2.4.0</version>
64
              </dependency>
65
              <dependency>
66
                <groupId>rhino</groupId>
67
                <artifactId>js</artifactId>
68
                <version>1.7R2</version>
69
              </dependency>
70
              <dependency>
71
                <groupId>org.apache.ant</groupId>
72
                <artifactId>ant-apache-bsf</artifactId>
73
                <version>1.8.3</version>
74
              </dependency>
75
              <dependency>
76
                <groupId>org.apache.ant</groupId>
77
                <artifactId>ant-nodeps</artifactId>
78
                <version>1.8.1</version>
79
              </dependency>
80
            </dependencies>
81
          </plugin>
82
        </plugins>
83
      </build>
84
    </profile>
85
	</profiles>
32
</project>
86
</project>
(-)a/bundles/org.eclipse.equinox.launcher.gtk.linux.x86/pom.xml (+55 lines)
Lines 28-31 Link Here
28
    <ws>gtk</ws>
28
    <ws>gtk</ws>
29
    <arch>x86</arch>
29
    <arch>x86</arch>
30
  </properties>
30
  </properties>
31
  <profiles>
32
  <profile>
33
      <id>build-native-launchers-gtk.linux.x86</id>
34
      <activation>
35
        <property>
36
          <name>native</name>
37
          <value>gtk.linux.x86</value>
38
        </property>
39
      </activation>
40
      <build>
41
        <plugins>
42
          <plugin>
43
            <artifactId>maven-antrun-plugin</artifactId>
44
            <version> 1.7 </version>
45
            <executions>
46
              <execution>
47
                <id>compile-executable-natives</id>
48
                <phase>generate-resources</phase>
49
                <configuration>
50
                  <target>
51
                    <ant antfile="../../../../features/org.eclipse.equinox.executable.feature/library/gtk/build.xml" dir="../../features/org.eclipse.equinox.executable.feature/library/gtk/" target="build_eclipse"/>
52
                  </target>
53
                </configuration>
54
                <goals>
55
                  <goal>run</goal>
56
                </goals>
57
              </execution>
58
            </executions>
59
            <dependencies>
60
              <dependency>
61
                <groupId>bsf</groupId>
62
                <artifactId>bsf</artifactId>
63
                <version>2.4.0</version>
64
              </dependency>
65
              <dependency>
66
                <groupId>rhino</groupId>
67
                <artifactId>js</artifactId>
68
                <version>1.7R2</version>
69
              </dependency>
70
              <dependency>
71
                <groupId>org.apache.ant</groupId>
72
                <artifactId>ant-apache-bsf</artifactId>
73
                <version>1.8.3</version>
74
              </dependency>
75
              <dependency>
76
                <groupId>org.apache.ant</groupId>
77
                <artifactId>ant-nodeps</artifactId>
78
                <version>1.8.1</version>
79
              </dependency>
80
            </dependencies>
81
          </plugin>
82
        </plugins>
83
      </build>
84
    </profile>
85
  </profiles>
31
</project>
86
</project>
(-)a/bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/pom.xml (+55 lines)
Lines 28-31 Link Here
28
    <ws>gtk</ws>
28
    <ws>gtk</ws>
29
    <arch>x86_64</arch>
29
    <arch>x86_64</arch>
30
  </properties>
30
  </properties>
31
  <profiles>
32
  <profile>
33
      <id>build-native-launchers-gtk.linux.x86_64</id>
34
      <activation>
35
        <property>
36
          <name>native</name>
37
          <value>gtk.linux.x86_64</value>
38
        </property>
39
      </activation>
40
      <build>
41
        <plugins>
42
          <plugin>
43
            <artifactId>maven-antrun-plugin</artifactId>
44
            <version> 1.7 </version>
45
            <executions>
46
              <execution>
47
                <id>compile-executable-natives</id>
48
                <phase>generate-resources</phase>
49
                <configuration>
50
                  <target>
51
                    <ant antfile="../../../../features/org.eclipse.equinox.executable.feature/library/gtk/build.xml" dir="../../features/org.eclipse.equinox.executable.feature/library/gtk/" target="build_eclipse"/>
52
                  </target>
53
                </configuration>
54
                <goals>
55
                  <goal>run</goal>
56
                </goals>
57
              </execution>
58
            </executions>
59
            <dependencies>
60
              <dependency>
61
                <groupId>bsf</groupId>
62
                <artifactId>bsf</artifactId>
63
                <version>2.4.0</version>
64
              </dependency>
65
              <dependency>
66
                <groupId>rhino</groupId>
67
                <artifactId>js</artifactId>
68
                <version>1.7R2</version>
69
              </dependency>
70
              <dependency>
71
                <groupId>org.apache.ant</groupId>
72
                <artifactId>ant-apache-bsf</artifactId>
73
                <version>1.8.3</version>
74
              </dependency>
75
              <dependency>
76
                <groupId>org.apache.ant</groupId>
77
                <artifactId>ant-nodeps</artifactId>
78
                <version>1.8.1</version>
79
              </dependency>
80
            </dependencies>
81
          </plugin>
82
        </plugins>
83
      </build>
84
    </profile>
85
  </profiles>
31
</project>
86
</project>
(-)a/bundles/org.eclipse.equinox.launcher.win32.win32.x86/pom.xml (+56 lines)
Lines 29-32 Link Here
29
    <ws>win32</ws>
29
    <ws>win32</ws>
30
    <arch>x86</arch>
30
    <arch>x86</arch>
31
  </properties>
31
  </properties>
32
  
33
  <profiles>
34
  <profile>
35
      <id>build-native-launchers-win32.win32.x86</id>
36
      <activation>
37
        <property>
38
          <name>native</name>
39
          <value>win32.win32.x86</value>
40
        </property>
41
      </activation>
42
      <build>
43
        <plugins>
44
          <plugin>
45
            <artifactId>maven-antrun-plugin</artifactId>
46
            <version> 1.7 </version>
47
            <executions>
48
              <execution>
49
                <id>compile-executable-natives</id>
50
                <phase>generate-resources</phase>
51
                <configuration>
52
                  <target>
53
                    <ant antfile="../../../../features/org.eclipse.equinox.executable.feature/library/win32/build.xml" dir="../../features/org.eclipse.equinox.executable.feature/library/win32/" target="build_eclipse"/>
54
                  </target>
55
                </configuration>
56
                <goals>
57
                  <goal>run</goal>
58
                </goals>
59
              </execution>
60
            </executions>
61
            <dependencies>
62
              <dependency>
63
                <groupId>bsf</groupId>
64
                <artifactId>bsf</artifactId>
65
                <version>2.4.0</version>
66
              </dependency>
67
              <dependency>
68
                <groupId>rhino</groupId>
69
                <artifactId>js</artifactId>
70
                <version>1.7R2</version>
71
              </dependency>
72
              <dependency>
73
                <groupId>org.apache.ant</groupId>
74
                <artifactId>ant-apache-bsf</artifactId>
75
                <version>1.8.3</version>
76
              </dependency>
77
              <dependency>
78
                <groupId>org.apache.ant</groupId>
79
                <artifactId>ant-nodeps</artifactId>
80
                <version>1.8.1</version>
81
              </dependency>
82
            </dependencies>
83
          </plugin>
84
        </plugins>
85
      </build>
86
    </profile>
87
  </profiles>
32
</project>
88
</project>
(-)a/bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/pom.xml (-1 / +56 lines)
Lines 29-32 Link Here
29
    <ws>win32</ws>
29
    <ws>win32</ws>
30
    <arch>x86_64</arch>
30
    <arch>x86_64</arch>
31
  </properties>
31
  </properties>
32
  
33
  <profiles>
34
  <profile>
35
      <id>build-native-launchers-win32.win32.x86_64</id>
36
      <activation>
37
        <property>
38
          <name>native</name>
39
          <value>win32.win32.x86_64</value>
40
        </property>
41
      </activation>
42
      <build>
43
        <plugins>
44
          <plugin>
45
            <artifactId>maven-antrun-plugin</artifactId>
46
            <version> 1.7 </version>
47
            <executions>
48
              <execution>
49
                <id>compile-executable-natives</id>
50
                <phase>generate-resources</phase>
51
                <configuration>
52
                  <target>
53
                    <ant antfile="../../../../features/org.eclipse.equinox.executable.feature/library/win32/build.xml" dir="../../features/org.eclipse.equinox.executable.feature/library/win32/" target="build_eclipse"/>
54
                  </target>
55
                </configuration>
56
                <goals>
57
                  <goal>run</goal>
58
                </goals>
59
              </execution>
60
            </executions>
61
            <dependencies>
62
              <dependency>
63
                <groupId>bsf</groupId>
64
                <artifactId>bsf</artifactId>
65
                <version>2.4.0</version>
66
              </dependency>
67
              <dependency>
68
                <groupId>rhino</groupId>
69
                <artifactId>js</artifactId>
70
                <version>1.7R2</version>
71
              </dependency>
72
              <dependency>
73
                <groupId>org.apache.ant</groupId>
74
                <artifactId>ant-apache-bsf</artifactId>
75
                <version>1.8.3</version>
76
              </dependency>
77
              <dependency>
78
                <groupId>org.apache.ant</groupId>
79
                <artifactId>ant-nodeps</artifactId>
80
                <version>1.8.1</version>
81
              </dependency>
82
            </dependencies>
83
          </plugin>
84
        </plugins>
85
      </build>
86
    </profile>
87
  </profiles>
32
</project>
88
</project>
33
- 

Return to bug 386377