blob: 6d6472fe2bfdba28bdd11e85d8b01bff68dd72e4 [file] [log] [blame]
genie.releng9fb37342017-12-05 05:10:42 -05001<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!--
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -05003###############################################################################
Alexander Kurtakova5277df2017-09-25 13:31:19 +03004# Copyright (c) 2012, 2017 Red Hat, Inc and others.
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -05005# All rights reserved. This program and the accompanying materials
6# are made available under the terms of the Eclipse Public License v1.0
7# which accompanies this distribution, and is available at
8# http://www.eclipse.org/legal/epl-v10.html
9#
10# Contributors:
11# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
12###############################################################################
Arun Thondapufd524892016-06-28 18:21:48 +053013--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Eclipse Platform RelEng Bote9abe9c2018-07-18 01:23:02 -040014
15 <modelVersion>4.0.0</modelVersion>
16
17 <parent>
18
19 <artifactId>eclipse.platform.swt.binaries</artifactId>
20
21 <groupId>eclipse.platform.swt.binaries</groupId>
22
Alexander Kurtakov635c02d2018-12-07 11:19:01 +020023 <version>4.11.0-SNAPSHOT</version>
Eclipse Platform RelEng Bote9abe9c2018-07-18 01:23:02 -040024
25 <relativePath>../../</relativePath>
26
27 </parent>
28
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050029 <groupId>eclipse.platform.swt.binaries</groupId>
Eclipse Platform RelEng Bote9abe9c2018-07-18 01:23:02 -040030
31 <artifactId>binaries-parent</artifactId>
32
Alexander Kurtakov635c02d2018-12-07 11:19:01 +020033 <version>4.11.0-SNAPSHOT</version>
Eclipse Platform RelEng Bote9abe9c2018-07-18 01:23:02 -040034
35 <packaging>pom</packaging>
36
37 <properties>
38
genie.releng8b039092018-12-13 18:03:04 -050039 <forceContextQualifier>v20181213-1803</forceContextQualifier>
Eclipse Platform RelEng Bote9abe9c2018-07-18 01:23:02 -040040
41 </properties>
42
43 <build>
44
45 <plugins>
46
47 <plugin>
48
49 <groupId>org.eclipse.tycho</groupId>
50
51 <artifactId>tycho-packaging-plugin</artifactId>
52
53 <version>${tycho.version}</version>
54
55 <configuration>
56
57 <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
58
59 </configuration>
60
61 </plugin>
62
63 <plugin>
64
65 <groupId>org.eclipse.tycho</groupId>
66
67 <artifactId>target-platform-configuration</artifactId>
68
69 <version>${tycho.version}</version>
70
71 <configuration>
72
73 <dependency-resolution>
74
75 <profileProperties>
76
77 <!-- set property so that the filter condition on the p2 dependencies from org.eclipse.swt to the fragments does not match -->
78
79 <org.eclipse.swt.buildtime>true</org.eclipse.swt.buildtime>
80
81 </profileProperties>
82
83 </dependency-resolution>
84
85 <environments>
86
87 <environment>
88
89 <os>${os}</os>
90
91 <ws>${ws}</ws>
92
93 <arch>${arch}</arch>
94
95 </environment>
96
97 </environments>
98
99 </configuration>
100
101 </plugin>
102
103 <plugin>
104
105 <artifactId>maven-antrun-plugin</artifactId>
106
107 <executions>
108
109 <execution>
110
111 <id>normal</id>
112
113 <phase>initialize</phase>
114
115 <configuration>
116
117 <target>
118
119 <property name="copy.src.dir" value="src"/>
120
121 <ant antfile="build.xml" target="copy.${ws}.src"/>
122
123 </target>
124
125 </configuration>
126
127 <goals>
128
129 <goal>run</goal>
130
131 </goals>
132
133 </execution>
134
135 </executions>
136
137 <dependencies>
138
139 <dependency>
140
141 <groupId>com.sun</groupId>
142
143 <artifactId>tools</artifactId>
144
145 <version>0.0.0</version>
146
147 <scope>system</scope>
148
149 <systemPath>${toolsjar}</systemPath>
150
151 </dependency>
152
153 <dependency>
154
155 <groupId>org.mozilla</groupId>
156
157 <artifactId>rhino</artifactId>
158
159 <version>1.7.10</version>
160
161 </dependency>
162
163 <dependency>
164
165 <groupId>org.apache.ant</groupId>
166
167 <artifactId>ant-apache-bsf</artifactId>
168
169 <version>1.10.3</version>
170
171 </dependency>
172
173 </dependencies>
174
175 </plugin>
176
177 </plugins>
178
179 </build>
180
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -0500181</project>