Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ############################################################################### |
Silenio Quarti | 16c85ca | 2013-02-25 12:32:30 -0500 | [diff] [blame] | 4 | # Copyright (c) 2012, 2013 Red Hat, Inc and others. |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 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 and others. - 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>binaries-parent</artifactId> |
| 18 | <groupId>eclipse.platform.swt.binaries</groupId> |
Alexander Kurtakov | a1a826a | 2017-06-22 10:25:18 +0300 | [diff] [blame] | 19 | <version>4.8.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 20 | <relativePath>../binaries-parent/</relativePath> |
| 21 | </parent> |
Silenio Quarti | 16c85ca | 2013-02-25 12:32:30 -0500 | [diff] [blame] | 22 | <groupId>org.eclipse.swt</groupId> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 23 | <artifactId>org.eclipse.swt.cocoa.macosx.x86_64</artifactId> |
Alexander Kurtakov | 9c656b6 | 2017-08-09 16:04:47 +0300 | [diff] [blame] | 24 | <version>3.107.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 25 | <packaging>eclipse-plugin</packaging> |
| 26 | |
| 27 | <properties> |
| 28 | <os>macosx</os> |
| 29 | <ws>cocoa</ws> |
| 30 | <arch>x86_64</arch> |
Thanh Ha | 262b84f | 2012-11-22 16:56:14 -0500 | [diff] [blame] | 31 | <buildid>${buildId}</buildid> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 32 | </properties> |
| 33 | |
Thanh Ha | 262b84f | 2012-11-22 16:56:14 -0500 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <artifactId>maven-antrun-plugin</artifactId> |
Thanh Ha | 262b84f | 2012-11-22 16:56:14 -0500 | [diff] [blame] | 38 | <executions> |
| 39 | <execution> |
| 40 | <id>swtdownload</id> |
| 41 | <phase>package</phase> |
| 42 | <configuration> |
| 43 | <target> |
Silenio Quarti | 291e6d2 | 2013-03-27 12:25:35 -0400 | [diff] [blame] | 44 | <ant antfile="build.xml" target="swtdownload"/> |
Thanh Ha | 262b84f | 2012-11-22 16:56:14 -0500 | [diff] [blame] | 45 | </target> |
| 46 | </configuration> |
| 47 | <goals> |
| 48 | <goal>run</goal> |
| 49 | </goals> |
| 50 | </execution> |
| 51 | </executions> |
Thanh Ha | 262b84f | 2012-11-22 16:56:14 -0500 | [diff] [blame] | 52 | </plugin> |
Thanh Ha | 262b84f | 2012-11-22 16:56:14 -0500 | [diff] [blame] | 53 | </plugins> |
| 54 | </build> |
| 55 | |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 56 | <!-- This has to be here. Profiles are not inheritable. --> |
| 57 | <profiles> |
| 58 | <profile> |
| 59 | <id>build-natives</id> |
| 60 | <activation> |
| 61 | <property> |
| 62 | <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( --> |
| 63 | <name>native</name> |
| 64 | <value>cocoa.macosx.x86_64</value> |
| 65 | </property> |
| 66 | </activation> |
| 67 | <build> |
| 68 | <plugins> |
| 69 | <plugin> |
| 70 | <artifactId>maven-antrun-plugin</artifactId> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 71 | <executions> |
| 72 | <execution> |
| 73 | <id>natives</id> |
| 74 | <phase>process-resources</phase> |
| 75 | <configuration> |
| 76 | <target> |
Silenio Quarti | 291e6d2 | 2013-03-27 12:25:35 -0400 | [diff] [blame] | 77 | <ant antfile="build.xml" target="build_libraries"/> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 78 | </target> |
| 79 | </configuration> |
| 80 | <goals> |
| 81 | <goal>run</goal> |
| 82 | </goals> |
| 83 | </execution> |
| 84 | </executions> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 85 | </plugin> |
| 86 | </plugins> |
| 87 | </build> |
| 88 | </profile> |
| 89 | </profiles> |
| 90 | </project> |