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 | |
| 17 | <parent> |
| 18 | <groupId>org.eclipse</groupId> |
Silenio Quarti | 753b868 | 2013-02-25 11:30:11 -0500 | [diff] [blame] | 19 | <artifactId>eclipse-platform-parent</artifactId> |
Markus Keller | 524ad25 | 2015-07-02 22:47:59 +0200 | [diff] [blame] | 20 | <version>4.6.0-SNAPSHOT</version> |
Silenio Quarti | 753b868 | 2013-02-25 11:30:11 -0500 | [diff] [blame] | 21 | <relativePath>../eclipse-platform-parent</relativePath> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 22 | </parent> |
| 23 | |
| 24 | <groupId>eclipse.platform.swt.binaries</groupId> |
| 25 | <artifactId>eclipse.platform.swt.binaries</artifactId> |
Markus Keller | 524ad25 | 2015-07-02 22:47:59 +0200 | [diff] [blame] | 26 | <version>4.6.0-SNAPSHOT</version> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 27 | <packaging>pom</packaging> |
| 28 | |
| 29 | <properties> |
| 30 | <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.swt.binaries.git</tycho.scmUrl> |
| 31 | </properties> |
| 32 | |
Markus Keller | b23b194 | 2015-08-19 21:34:57 +0200 | [diff] [blame] | 33 | <!-- |
| 34 | To build individual bundles, we specify a repository where to find parent pom, |
| 35 | in case it is not in local maven cache already |
| 36 | and that parent pom also has fuller individual-bundle profile |
| 37 | defined that is combined with this one. --> |
| 38 | <profiles> |
| 39 | <profile> |
| 40 | <id>build-individual-bundles</id> |
| 41 | <repositories> |
| 42 | <repository> |
| 43 | <releases> |
| 44 | <enabled>true</enabled> |
| 45 | </releases> |
| 46 | <snapshots> |
| 47 | <enabled>true</enabled> |
| 48 | </snapshots> |
| 49 | <id>eclipse-hosted</id> |
| 50 | <url>https://repo.eclipse.org/content/repositories/eclipse/</url> |
| 51 | </repository> |
| 52 | </repositories> |
| 53 | </profile> |
Alexander Kurtakov | c07b216 | 2015-11-18 19:25:01 +0200 | [diff] [blame] | 54 | <profile> |
| 55 | <id>build-natives-arm</id> |
| 56 | <activation> |
| 57 | <property> |
| 58 | <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( --> |
| 59 | <name>native</name> |
| 60 | <value>gtk.linux.arm</value> |
| 61 | </property> |
| 62 | </activation> |
| 63 | <modules> |
| 64 | <module>bundles/org.eclipse.swt.gtk.linux.arm</module> |
| 65 | </modules> |
| 66 | </profile> |
| 67 | <profile> |
| 68 | <id>build-natives-aarch64</id> |
| 69 | <activation> |
| 70 | <property> |
| 71 | <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( --> |
| 72 | <name>native</name> |
| 73 | <value>gtk.linux.aarch64</value> |
| 74 | </property> |
| 75 | </activation> |
| 76 | <modules> |
| 77 | <module>bundles/org.eclipse.swt.gtk.linux.aarch64</module> |
| 78 | </modules> |
| 79 | </profile> |
Markus Keller | b23b194 | 2015-08-19 21:34:57 +0200 | [diff] [blame] | 80 | </profiles> |
Silenio Quarti | 291e6d2 | 2013-03-27 12:25:35 -0400 | [diff] [blame] | 81 | |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 82 | <modules> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 83 | <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module> |
| 84 | <module>bundles/org.eclipse.swt.gtk.aix.ppc</module> |
| 85 | <module>bundles/org.eclipse.swt.gtk.aix.ppc64</module> |
| 86 | <module>bundles/org.eclipse.swt.gtk.hpux.ia64</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 87 | <module>bundles/org.eclipse.swt.gtk.linux.ppc</module> |
| 88 | <module>bundles/org.eclipse.swt.gtk.linux.ppc64</module> |
Steve Francisco | 21a7c27 | 2014-08-07 11:24:46 -0400 | [diff] [blame] | 89 | <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 90 | <module>bundles/org.eclipse.swt.gtk.linux.s390</module> |
| 91 | <module>bundles/org.eclipse.swt.gtk.linux.s390x</module> |
| 92 | <module>bundles/org.eclipse.swt.gtk.linux.x86</module> |
| 93 | <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module> |
Arun Thondapu | 1c44a25 | 2016-05-19 20:24:26 +0530 | [diff] [blame^] | 94 | <module>bundles/org.eclipse.swt.gtk.solaris.sparcv9</module> |
Arun Thondapu | 3d49934 | 2016-03-30 23:23:49 +0530 | [diff] [blame] | 95 | <module>bundles/org.eclipse.swt.gtk.solaris.x86_64</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 96 | <module>bundles/org.eclipse.swt.win32.win32.x86</module> |
| 97 | <module>bundles/org.eclipse.swt.win32.win32.x86_64</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 98 | </modules> |
| 99 | |
| 100 | <build> |
| 101 | <plugins> |
| 102 | <plugin> |
Thanh Ha | d73d0cb | 2013-02-05 15:57:14 -0500 | [diff] [blame] | 103 | <artifactId>maven-clean-plugin</artifactId> |
Alexander Kurtakov | 2446cb0 | 2015-10-23 11:21:44 +0300 | [diff] [blame] | 104 | <version>3.0.0</version> |
Thanh Ha | d73d0cb | 2013-02-05 15:57:14 -0500 | [diff] [blame] | 105 | <configuration> |
| 106 | <filesets> |
| 107 | <fileset> |
Alexander Kurtakov | 245ce84 | 2013-03-08 16:11:24 +0200 | [diff] [blame] | 108 | <directory>src</directory> |
| 109 | <includes> |
| 110 | <include>**/*</include> |
| 111 | </includes> |
| 112 | <followSymlinks>false</followSymlinks> |
| 113 | </fileset> |
Thanh Ha | d73d0cb | 2013-02-05 15:57:14 -0500 | [diff] [blame] | 114 | </filesets> |
| 115 | </configuration> |
| 116 | </plugin> |
Silenio Quarti | 7a969c0 | 2013-07-17 13:22:36 -0400 | [diff] [blame] | 117 | <plugin> |
| 118 | <groupId>org.eclipse.tycho</groupId> |
| 119 | <artifactId>target-platform-configuration</artifactId> |
| 120 | <configuration> |
Alexander Kurtakov | e3dafb3 | 2016-01-11 13:53:48 +0200 | [diff] [blame] | 121 | <executionEnvironment>JavaSE-1.7</executionEnvironment> |
Silenio Quarti | 7a969c0 | 2013-07-17 13:22:36 -0400 | [diff] [blame] | 122 | </configuration> |
| 123 | </plugin> |
| 124 | <plugin> |
| 125 | <groupId>org.eclipse.tycho</groupId> |
| 126 | <artifactId>tycho-compiler-plugin</artifactId> |
| 127 | <configuration> |
Alexander Kurtakov | e3dafb3 | 2016-01-11 13:53:48 +0200 | [diff] [blame] | 128 | <source>1.7</source> |
| 129 | <target>1.7</target> |
Silenio Quarti | 7a969c0 | 2013-07-17 13:22:36 -0400 | [diff] [blame] | 130 | </configuration> |
| 131 | </plugin> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 132 | </plugins> |
| 133 | </build> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 134 | |
| 135 | </project> |