Arun Thondapu | fd52489 | 2016-06-28 18:21:48 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?><!-- |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 2 | ############################################################################### |
Alexander Kurtakov | a5a88b2 | 2016-06-29 12:44:37 +0300 | [diff] [blame] | 3 | # Copyright (c) 2012, 2016 Red Hat, Inc and others. |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 4 | # All rights reserved. This program and the accompanying materials |
| 5 | # are made available under the terms of the Eclipse Public License v1.0 |
| 6 | # which accompanies this distribution, and is available at |
| 7 | # http://www.eclipse.org/legal/epl-v10.html |
| 8 | # |
| 9 | # Contributors: |
| 10 | # Krzysztof Daniel, Red Hat, Inc. - initial API and implementation |
| 11 | ############################################################################### |
Arun Thondapu | fd52489 | 2016-06-28 18:21:48 +0530 | [diff] [blame] | 12 | --><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] | 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <parent> |
| 15 | <artifactId>eclipse.platform.swt.binaries</artifactId> |
| 16 | <groupId>eclipse.platform.swt.binaries</groupId> |
Markus Keller | d63833f | 2016-06-28 13:59:50 +0200 | [diff] [blame] | 17 | <version>4.7.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 18 | <relativePath>../../</relativePath> |
| 19 | </parent> |
| 20 | <groupId>eclipse.platform.swt.binaries</groupId> |
| 21 | <artifactId>binaries-parent</artifactId> |
Markus Keller | d63833f | 2016-06-28 13:59:50 +0200 | [diff] [blame] | 22 | <version>4.7.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 23 | <packaging>pom</packaging> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 24 | <properties> |
Arun Thondapu | 86b0353 | 2016-12-15 17:56:10 +0530 | [diff] [blame] | 25 | <forceContextQualifier>v20161215-0726</forceContextQualifier> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 26 | </properties> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.eclipse.tycho</groupId> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 31 | <artifactId>tycho-packaging-plugin</artifactId> |
| 32 | <version>${tycho.version}</version> |
| 33 | <configuration> |
| 34 | <forceContextQualifier>${forceContextQualifier}</forceContextQualifier> |
| 35 | </configuration> |
| 36 | </plugin> |
| 37 | <plugin> |
| 38 | <groupId>org.eclipse.tycho</groupId> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 39 | <artifactId>target-platform-configuration</artifactId> |
| 40 | <version>${tycho.version}</version> |
| 41 | <configuration> |
Lakshmi Shanmugam | f01a9f6 | 2015-03-15 12:58:04 -0400 | [diff] [blame] | 42 | <dependency-resolution> |
| 43 | <profileProperties> |
| 44 | <!-- set property so that the filter condition on the p2 dependencies from org.eclipse.swt to the fragments does not match --> |
| 45 | <org.eclipse.swt.buildtime>true</org.eclipse.swt.buildtime> |
| 46 | </profileProperties> |
| 47 | </dependency-resolution> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 48 | <environments> |
| 49 | <environment> |
| 50 | <os>${os}</os> |
| 51 | <ws>${ws}</ws> |
| 52 | <arch>${arch}</arch> |
| 53 | </environment> |
| 54 | </environments> |
| 55 | </configuration> |
| 56 | </plugin> |
| 57 | <plugin> |
| 58 | <artifactId>maven-antrun-plugin</artifactId> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 59 | <executions> |
| 60 | <execution> |
| 61 | <id>normal</id> |
Silenio Quarti | 4afa51f | 2013-07-11 15:18:00 -0400 | [diff] [blame] | 62 | <phase>initialize</phase> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 63 | <configuration> |
| 64 | <target> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 65 | <property name="copy.src.dir" value="src"/> |
| 66 | <ant antfile="build.xml" target="copy.${ws}.src"/> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 67 | </target> |
| 68 | </configuration> |
| 69 | <goals> |
| 70 | <goal>run</goal> |
| 71 | </goals> |
| 72 | </execution> |
| 73 | </executions> |
Alexander Kurtakov | bb8f12f | 2013-07-31 17:19:40 +0300 | [diff] [blame] | 74 | <dependencies> |
| 75 | <dependency> |
| 76 | <groupId>com.sun</groupId> |
| 77 | <artifactId>tools</artifactId> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 78 | <version>0.0.0</version> |
Alexander Kurtakov | bb8f12f | 2013-07-31 17:19:40 +0300 | [diff] [blame] | 79 | <scope>system</scope> |
| 80 | <systemPath>${toolsjar}</systemPath> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 81 | </dependency> |
| 82 | <dependency> |
Alexander Kurtakov | bf28269 | 2015-01-22 21:48:46 +0200 | [diff] [blame] | 83 | <groupId>org.mozilla</groupId> |
| 84 | <artifactId>rhino</artifactId> |
Alexander Kurtakov | a5a88b2 | 2016-06-29 12:44:37 +0300 | [diff] [blame] | 85 | <version>1.7.7.1</version> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.apache.ant</groupId> |
| 89 | <artifactId>ant-apache-bsf</artifactId> |
Alexander Kurtakov | bf28269 | 2015-01-22 21:48:46 +0200 | [diff] [blame] | 90 | <version>1.9.4</version> |
Paul Webster | 4f65f67 | 2013-11-07 14:11:25 -0500 | [diff] [blame] | 91 | </dependency> |
| 92 | </dependencies> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 96 | </project> |