blob: b8670c65355a66132d5a833293945efcb66e98d8 [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-->
14<project
15 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
16 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
17 <modelVersion>4.0.0</modelVersion>
18 <parent>
19 <artifactId>eclipse.platform.swt.binaries</artifactId>
20 <groupId>eclipse.platform.swt.binaries</groupId>
21 <version>4.2.0-SNAPSHOT</version>
22 <relativePath>../../</relativePath>
23 </parent>
24 <groupId>eclipse.platform.swt.binaries</groupId>
25 <artifactId>binaries-parent</artifactId>
26 <version>4.2.0-SNAPSHOT</version>
27 <packaging>pom</packaging>
28
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.eclipse.tycho</groupId>
33 <artifactId>target-platform-configuration</artifactId>
34 <version>${tycho.version}</version>
35 <configuration>
36 <environments>
37 <environment>
38 <os>${os}</os>
39 <ws>${ws}</ws>
40 <arch>${arch}</arch>
41 </environment>
42 </environments>
43 </configuration>
44 </plugin>
45 <plugin>
46 <artifactId>maven-antrun-plugin</artifactId>
47 <version>1.7</version>
48 <executions>
49 <execution>
50 <id>normal</id>
51 <phase>compile</phase>
52 <configuration>
53 <target>
54 <property name="build.compiler" value="extJavac" />
55 <delete dir="org" failonerror="false" />
56 <delete dir="src" failonerror="false" />
57 <ant antfile="build.xml" target="build.jars" />
58 <copy toDir=".">
59 <fileset dir="@dot/" />
60 </copy>
61 <copy toDir="src/org/">
62 <fileset dir="temp.folder/@dot.src/org/" />
63 </copy>
64 <copy toDir="target/classes/org/">
65 <fileset dir="@dot/org/" />
66 </copy>
67 </target>
68 </configuration>
69 <goals>
70 <goal>run</goal>
71 </goals>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
77</project>