blob: 4e710502626d7886baa275b40a238b141004aa1c [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>
61 </plugin>
62 </plugins>
63 </build>
64</project>