genie.releng | e215a1e | 2017-12-05 02:09:08 -0500 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| 2 | <!-- |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 3 | ############################################################################### |
Alexander Kurtakov | a5277df | 2017-09-25 13:31:19 +0300 | [diff] [blame] | 4 | # Copyright (c) 2012, 2017 Red Hat, Inc and others. |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 5 | # 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 Thondapu | fd52489 | 2016-06-28 18:21:48 +0530 | [diff] [blame] | 13 | --><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"> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 14 | <modelVersion>4.0.0</modelVersion> |
| 15 | <parent> |
| 16 | <artifactId>eclipse.platform.swt.binaries</artifactId> |
| 17 | <groupId>eclipse.platform.swt.binaries</groupId> |
Alexander Kurtakov | a1a826a | 2017-06-22 10:25:18 +0300 | [diff] [blame] | 18 | <version>4.8.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 19 | <relativePath>../../</relativePath> |
| 20 | </parent> |
| 21 | <groupId>eclipse.platform.swt.binaries</groupId> |
| 22 | <artifactId>binaries-parent</artifactId> |
Alexander Kurtakov | a1a826a | 2017-06-22 10:25:18 +0300 | [diff] [blame] | 23 | <version>4.8.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 24 | <packaging>pom</packaging> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 25 | <properties> |
genie.releng | e215a1e | 2017-12-05 02:09:08 -0500 | [diff] [blame^] | 26 | <forceContextQualifier>v20171205-0208</forceContextQualifier> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 27 | </properties> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.eclipse.tycho</groupId> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 32 | <artifactId>tycho-packaging-plugin</artifactId> |
| 33 | <version>${tycho.version}</version> |
| 34 | <configuration> |
| 35 | <forceContextQualifier>${forceContextQualifier}</forceContextQualifier> |
| 36 | </configuration> |
| 37 | </plugin> |
| 38 | <plugin> |
| 39 | <groupId>org.eclipse.tycho</groupId> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 40 | <artifactId>target-platform-configuration</artifactId> |
| 41 | <version>${tycho.version}</version> |
| 42 | <configuration> |
Lakshmi Shanmugam | f01a9f6 | 2015-03-15 12:58:04 -0400 | [diff] [blame] | 43 | <dependency-resolution> |
| 44 | <profileProperties> |
| 45 | <!-- set property so that the filter condition on the p2 dependencies from org.eclipse.swt to the fragments does not match --> |
| 46 | <org.eclipse.swt.buildtime>true</org.eclipse.swt.buildtime> |
| 47 | </profileProperties> |
| 48 | </dependency-resolution> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 49 | <environments> |
| 50 | <environment> |
| 51 | <os>${os}</os> |
| 52 | <ws>${ws}</ws> |
| 53 | <arch>${arch}</arch> |
| 54 | </environment> |
| 55 | </environments> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <artifactId>maven-antrun-plugin</artifactId> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 60 | <executions> |
| 61 | <execution> |
| 62 | <id>normal</id> |
Silenio Quarti | 4afa51f | 2013-07-11 15:18:00 -0400 | [diff] [blame] | 63 | <phase>initialize</phase> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 64 | <configuration> |
| 65 | <target> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 66 | <property name="copy.src.dir" value="src"/> |
| 67 | <ant antfile="build.xml" target="copy.${ws}.src"/> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 68 | </target> |
| 69 | </configuration> |
| 70 | <goals> |
| 71 | <goal>run</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
Alexander Kurtakov | bb8f12f | 2013-07-31 17:19:40 +0300 | [diff] [blame] | 75 | <dependencies> |
| 76 | <dependency> |
| 77 | <groupId>com.sun</groupId> |
| 78 | <artifactId>tools</artifactId> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 79 | <version>0.0.0</version> |
Alexander Kurtakov | bb8f12f | 2013-07-31 17:19:40 +0300 | [diff] [blame] | 80 | <scope>system</scope> |
| 81 | <systemPath>${toolsjar}</systemPath> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
Alexander Kurtakov | bf28269 | 2015-01-22 21:48:46 +0200 | [diff] [blame] | 84 | <groupId>org.mozilla</groupId> |
| 85 | <artifactId>rhino</artifactId> |
Alexander Kurtakov | a5277df | 2017-09-25 13:31:19 +0300 | [diff] [blame] | 86 | <version>1.7.7.2</version> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.apache.ant</groupId> |
| 90 | <artifactId>ant-apache-bsf</artifactId> |
Alexander Kurtakov | 27f6be2 | 2017-06-23 09:58:54 +0300 | [diff] [blame] | 91 | <version>1.10.1</version> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 92 | </dependency> |
| 93 | </dependencies> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 94 | </plugin> |
| 95 | </plugins> |
| 96 | </build> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 97 | </project> |