blob: 6506c691d87002c4a69ea95a0f6312f41aaafb77 [file] [log] [blame]
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3###############################################################################
4# Copyright (c) 2012 Red Hat, Inc and others.
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###############################################################################
13-->
Silenio Quarti291e6d22013-03-27 12:25:35 -040014<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 Gheorghe56f15f02013-01-08 16:37:53 -050015 <modelVersion>4.0.0</modelVersion>
16 <parent>
17 <artifactId>eclipse.platform.swt.binaries</artifactId>
18 <groupId>eclipse.platform.swt.binaries</groupId>
Paul Webstere69174b2014-06-19 10:19:29 -040019 <version>4.5.0-SNAPSHOT</version>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050020 <relativePath>../../</relativePath>
21 </parent>
22 <groupId>eclipse.platform.swt.binaries</groupId>
23 <artifactId>binaries-parent</artifactId>
Paul Webstere69174b2014-06-19 10:19:29 -040024 <version>4.5.0-SNAPSHOT</version>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050025 <packaging>pom</packaging>
Paul Webster4f65f672013-11-07 14:11:25 -050026 <properties>
27 <forceContextQualifier>v20141119-1356</forceContextQualifier>
28 </properties>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050029 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.eclipse.tycho</groupId>
Paul Webster4f65f672013-11-07 14:11:25 -050033 <artifactId>tycho-packaging-plugin</artifactId>
34 <version>${tycho.version}</version>
35 <configuration>
36 <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.eclipse.tycho</groupId>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050041 <artifactId>target-platform-configuration</artifactId>
42 <version>${tycho.version}</version>
43 <configuration>
44 <environments>
45 <environment>
46 <os>${os}</os>
47 <ws>${ws}</ws>
48 <arch>${arch}</arch>
49 </environment>
50 </environments>
51 </configuration>
52 </plugin>
53 <plugin>
54 <artifactId>maven-antrun-plugin</artifactId>
55 <version>1.7</version>
56 <executions>
57 <execution>
58 <id>normal</id>
Silenio Quarti4afa51f2013-07-11 15:18:00 -040059 <phase>initialize</phase>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050060 <configuration>
61 <target>
Paul Webster4f65f672013-11-07 14:11:25 -050062 <property name="copy.src.dir" value="src"/>
63 <ant antfile="build.xml" target="copy.${ws}.src"/>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050064 </target>
65 </configuration>
66 <goals>
67 <goal>run</goal>
68 </goals>
69 </execution>
70 </executions>
Alexander Kurtakovbb8f12f2013-07-31 17:19:40 +030071 <dependencies>
72 <dependency>
73 <groupId>com.sun</groupId>
74 <artifactId>tools</artifactId>
Paul Webster4f65f672013-11-07 14:11:25 -050075 <version>0.0.0</version>
Alexander Kurtakovbb8f12f2013-07-31 17:19:40 +030076 <scope>system</scope>
77 <systemPath>${toolsjar}</systemPath>
Paul Webster4f65f672013-11-07 14:11:25 -050078 </dependency>
79 <dependency>
80 <groupId>bsf</groupId>
81 <artifactId>bsf</artifactId>
82 <version>2.4.0</version>
83 </dependency>
84 <dependency>
85 <groupId>rhino</groupId>
86 <artifactId>js</artifactId>
87 <version>1.7R2</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.ant</groupId>
91 <artifactId>ant-apache-bsf</artifactId>
92 <version>1.8.3</version>
93 </dependency>
94 </dependencies>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050095 </plugin>
96 </plugins>
97 </build>
98</project>