Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEclipse Releng Bot2021-05-31 13:59:27 +0000
committerEclipse Releng Bot2021-05-31 13:59:27 +0000
commit39e11402c9ce940b7042172fdf17e64740ab1985 (patch)
tree4a0f2f393a3e44f5ab219f1107b44df509e6d464
parent84e3e0c2771e4e9a254127eefe00cde450188333 (diff)
downloadeclipse.platform.swt.binaries-R4_19_maintenance.tar.gz
eclipse.platform.swt.binaries-R4_19_maintenance.tar.xz
eclipse.platform.swt.binaries-R4_19_maintenance.zip
-rw-r--r--bundles/binaries-parent/pom.xml245
1 files changed, 163 insertions, 82 deletions
diff --git a/bundles/binaries-parent/pom.xml b/bundles/binaries-parent/pom.xml
index 9586ea615..f78b4db2e 100644
--- a/bundles/binaries-parent/pom.xml
+++ b/bundles/binaries-parent/pom.xml
@@ -11,249 +11,330 @@
# Krzysztof Daniel, Red Hat, Inc. - initial API and implementation
###############################################################################
--><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">
-
+
+
<modelVersion>4.0.0</modelVersion>
-
+
+
<parent>
-
+
+
<artifactId>eclipse.platform.swt.binaries</artifactId>
-
+
+
<groupId>eclipse.platform.swt.binaries</groupId>
-
+
+
<version>4.19.0-SNAPSHOT</version>
-
+
+
<relativePath>../../</relativePath>
-
+
+
</parent>
-
+
+
<groupId>eclipse.platform.swt.binaries</groupId>
-
+
+
<artifactId>binaries-parent</artifactId>
-
+
+
<packaging>pom</packaging>
-
+
+
<properties>
-
+
- <forceContextQualifier>v20210407-1051</forceContextQualifier>
-
+
+ <forceContextQualifier>v20210531-1359</forceContextQualifier>
+
+
</properties>
-
+
+
<build>
-
+
+
<plugins>
-
+
+
<plugin>
-
+
+
<groupId>org.eclipse.tycho</groupId>
-
+
+
<artifactId>tycho-packaging-plugin</artifactId>
-
+
+
<version>${tycho.version}</version>
-
+
+
<configuration>
-
+
+
<forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
-
+
+
</configuration>
-
+
+
</plugin>
-
+
+
<plugin>
-
+
+
<groupId>org.eclipse.tycho</groupId>
-
+
+
<artifactId>target-platform-configuration</artifactId>
-
+
+
<version>${tycho.version}</version>
-
+
+
<configuration>
-
+
+
<dependency-resolution>
-
+
+
<profileProperties>
-
+
+
<!-- set property so that the filter condition on the p2 dependencies from org.eclipse.swt to the fragments does not match -->
-
+
+
<org.eclipse.swt.buildtime>true</org.eclipse.swt.buildtime>
-
+
+
</profileProperties>
-
+
+
</dependency-resolution>
-
+
+
<environments>
-
+
+
<environment>
-
+
+
<os>${os}</os>
-
+
+
<ws>${ws}</ws>
-
+
+
<arch>${arch}</arch>
-
+
+
</environment>
-
+
+
</environments>
-
+
+
</configuration>
-
+
+
</plugin>
-
+
+
<plugin>
-
+
+
<artifactId>maven-antrun-plugin</artifactId>
-
+
+
<executions>
-
+
+
<execution>
-
+
+
<id>normal</id>
-
+
+
<phase>initialize</phase>
-
+
+
<configuration>
-
+
+
<target>
-
+
+
<property name="copy.src.dir" value="src"/>
-
+
+
<ant antfile="build.xml" target="copy.${ws}.src"/>
-
+
+
</target>
-
+
+
</configuration>
-
+
+
<goals>
-
+
+
<goal>run</goal>
-
+
+
</goals>
-
+
+
</execution>
-
+
+
</executions>
-
+
+
<dependencies>
-
+
+
<dependency>
-
+
+
<groupId>org.mozilla</groupId>
-
+
+
<artifactId>rhino-runtime</artifactId>
-
+
+
<version>1.7.13</version>
-
+
+
</dependency>
-
+
+
<dependency>
-
+
+
<groupId>org.apache.ant</groupId>
-
+
+
<artifactId>ant</artifactId>
-
+
+
<version>1.10.9</version>
-
+
+
</dependency>
-
+
+
<dependency>
-
+
+
<groupId>org.apache.ant</groupId>
-
+
+
<artifactId>ant-apache-bsf</artifactId>
-
+
+
<version>1.10.9</version>
-
+
+
</dependency>
-
+
+
</dependencies>
-
+
+
</plugin>
-
+
+
</plugins>
-
+
+
</build>
-
+
+
</project>

Back to the top