blob: 65abeb3764ee182bed15d53ef6be173d5adcdf20 [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>
Silenio Quarti38c5cce2013-06-26 12:26:02 -040019 <version>4.4.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>
Silenio Quarti38c5cce2013-06-26 12:26:02 -040024 <version>4.4.0-SNAPSHOT</version>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050025 <packaging>pom</packaging>
26
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.eclipse.tycho</groupId>
31 <artifactId>target-platform-configuration</artifactId>
32 <version>${tycho.version}</version>
33 <configuration>
34 <environments>
35 <environment>
36 <os>${os}</os>
37 <ws>${ws}</ws>
38 <arch>${arch}</arch>
39 </environment>
40 </environments>
41 </configuration>
42 </plugin>
43 <plugin>
44 <artifactId>maven-antrun-plugin</artifactId>
45 <version>1.7</version>
46 <executions>
47 <execution>
48 <id>normal</id>
Silenio Quarti4afa51f2013-07-11 15:18:00 -040049 <phase>initialize</phase>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050050 <configuration>
51 <target>
Silenio Quarti4afa51f2013-07-11 15:18:00 -040052 <property name="copy.src.dir" value="src"/>
53 <ant antfile="build.xml" target="copy.${ws}.src"/>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050054 </target>
55 </configuration>
56 <goals>
57 <goal>run</goal>
58 </goals>
59 </execution>
60 </executions>
Alexander Kurtakovbb8f12f2013-07-31 17:19:40 +030061 <dependencies>
62 <dependency>
63 <groupId>com.sun</groupId>
64 <artifactId>tools</artifactId>
65 <version>0.0.0</version>
66 <scope>system</scope>
67 <systemPath>${toolsjar}</systemPath>
68 </dependency>
69 <dependency>
70 <groupId>bsf</groupId>
71 <artifactId>bsf</artifactId>
72 <version>2.4.0</version>
73 </dependency>
74 <dependency>
75 <groupId>rhino</groupId>
76 <artifactId>js</artifactId>
77 <version>1.7R2</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.ant</groupId>
81 <artifactId>ant-apache-bsf</artifactId>
82 <version>1.8.3</version>
83 </dependency>
84 </dependencies>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050085 </plugin>
86 </plugins>
87 </build>
88</project>