blob: 53eea6dd9f2a33c5392dd066a0c45e94a08b8a74 [file] [log] [blame]
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3###############################################################################
Alexander Kurtakov3747db42016-08-02 18:56:00 +03004# Copyright (c) 2012, 2016 Red Hat, Inc and others.
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -05005# 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
17 <parent>
18 <groupId>org.eclipse</groupId>
Silenio Quarti753b8682013-02-25 11:30:11 -050019 <artifactId>eclipse-platform-parent</artifactId>
Lakshmi Shanmugamabfba192016-06-28 11:45:29 +053020 <version>4.7.0-SNAPSHOT</version>
Silenio Quarti753b8682013-02-25 11:30:11 -050021 <relativePath>../eclipse-platform-parent</relativePath>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050022 </parent>
23
24 <groupId>eclipse.platform.swt.binaries</groupId>
25 <artifactId>eclipse.platform.swt.binaries</artifactId>
Lakshmi Shanmugamabfba192016-06-28 11:45:29 +053026 <version>4.7.0-SNAPSHOT</version>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050027 <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 Kellerb23b1942015-08-19 21:34:57 +020033 <!--
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>
54 </profiles>
Silenio Quarti291e6d22013-03-27 12:25:35 -040055
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050056 <modules>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050057 <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module>
58 <module>bundles/org.eclipse.swt.gtk.aix.ppc</module>
59 <module>bundles/org.eclipse.swt.gtk.aix.ppc64</module>
60 <module>bundles/org.eclipse.swt.gtk.hpux.ia64</module>
Alexander Kurtakov3747db42016-08-02 18:56:00 +030061 <module>bundles/org.eclipse.swt.gtk.linux.aarch64</module>
62 <module>bundles/org.eclipse.swt.gtk.linux.arm</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050063 <module>bundles/org.eclipse.swt.gtk.linux.ppc</module>
64 <module>bundles/org.eclipse.swt.gtk.linux.ppc64</module>
Steve Francisco21a7c272014-08-07 11:24:46 -040065 <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050066 <module>bundles/org.eclipse.swt.gtk.linux.s390</module>
67 <module>bundles/org.eclipse.swt.gtk.linux.s390x</module>
68 <module>bundles/org.eclipse.swt.gtk.linux.x86</module>
69 <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module>
Arun Thondapu1c44a252016-05-19 20:24:26 +053070 <module>bundles/org.eclipse.swt.gtk.solaris.sparcv9</module>
Arun Thondapu3d499342016-03-30 23:23:49 +053071 <module>bundles/org.eclipse.swt.gtk.solaris.x86_64</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050072 <module>bundles/org.eclipse.swt.win32.win32.x86</module>
73 <module>bundles/org.eclipse.swt.win32.win32.x86_64</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050074 </modules>
75
76 <build>
77 <plugins>
78 <plugin>
Thanh Had73d0cb2013-02-05 15:57:14 -050079 <artifactId>maven-clean-plugin</artifactId>
Alexander Kurtakov2446cb02015-10-23 11:21:44 +030080 <version>3.0.0</version>
Thanh Had73d0cb2013-02-05 15:57:14 -050081 <configuration>
82 <filesets>
83 <fileset>
Alexander Kurtakov245ce842013-03-08 16:11:24 +020084 <directory>src</directory>
85 <includes>
86 <include>**/*</include>
87 </includes>
88 <followSymlinks>false</followSymlinks>
89 </fileset>
Thanh Had73d0cb2013-02-05 15:57:14 -050090 </filesets>
91 </configuration>
92 </plugin>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050093 </plugins>
94 </build>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050095
96</project>