Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 1 | <?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 Quarti | 291e6d2 | 2013-03-27 12:25:35 -0400 | [diff] [blame] | 14 | <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] | 15 | <modelVersion>4.0.0</modelVersion> |
| 16 | <parent> |
| 17 | <artifactId>eclipse.platform.swt.binaries</artifactId> |
| 18 | <groupId>eclipse.platform.swt.binaries</groupId> |
Silenio Quarti | 38c5cce | 2013-06-26 12:26:02 -0400 | [diff] [blame] | 19 | <version>4.4.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 20 | <relativePath>../../</relativePath> |
| 21 | </parent> |
| 22 | <groupId>eclipse.platform.swt.binaries</groupId> |
| 23 | <artifactId>binaries-parent</artifactId> |
Silenio Quarti | 38c5cce | 2013-06-26 12:26:02 -0400 | [diff] [blame] | 24 | <version>4.4.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 25 | <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 Quarti | 4afa51f | 2013-07-11 15:18:00 -0400 | [diff] [blame^] | 49 | <phase>initialize</phase> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 50 | <configuration> |
| 51 | <target> |
Silenio Quarti | 4afa51f | 2013-07-11 15:18:00 -0400 | [diff] [blame^] | 52 | <property name="copy.src.dir" value="src"/> |
| 53 | <ant antfile="build.xml" target="copy.${ws}.src"/> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 54 | </target> |
| 55 | </configuration> |
| 56 | <goals> |
| 57 | <goal>run</goal> |
| 58 | </goals> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | </project> |