blob: 23f6f645f555a6b3e2298b1134e56a3a03252b79 [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
17 <parent>
18 <groupId>org.eclipse</groupId>
Silenio Quarti753b8682013-02-25 11:30:11 -050019 <artifactId>eclipse-platform-parent</artifactId>
Markus Keller524ad252015-07-02 22:47:59 +020020 <version>4.6.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>
Markus Keller524ad252015-07-02 22:47:59 +020026 <version>4.6.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
Silenio Quarti291e6d22013-03-27 12:25:35 -040033 <repositories>
34 <repository>
35 <releases>
36 <enabled>true</enabled>
37 </releases>
38 <snapshots>
39 <enabled>true</enabled>
40 </snapshots>
41 <id>eclipse-hosted</id>
42 <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
43 </repository>
44 </repositories>
45
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050046 <modules>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050047 <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module>
48 <module>bundles/org.eclipse.swt.gtk.aix.ppc</module>
49 <module>bundles/org.eclipse.swt.gtk.aix.ppc64</module>
50 <module>bundles/org.eclipse.swt.gtk.hpux.ia64</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050051 <module>bundles/org.eclipse.swt.gtk.linux.ppc</module>
52 <module>bundles/org.eclipse.swt.gtk.linux.ppc64</module>
Steve Francisco21a7c272014-08-07 11:24:46 -040053 <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050054 <module>bundles/org.eclipse.swt.gtk.linux.s390</module>
55 <module>bundles/org.eclipse.swt.gtk.linux.s390x</module>
56 <module>bundles/org.eclipse.swt.gtk.linux.x86</module>
57 <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module>
58 <module>bundles/org.eclipse.swt.gtk.solaris.sparc</module>
59 <module>bundles/org.eclipse.swt.gtk.solaris.x86</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050060 <module>bundles/org.eclipse.swt.win32.win32.x86</module>
61 <module>bundles/org.eclipse.swt.win32.win32.x86_64</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050062 </modules>
63
64 <build>
65 <plugins>
66 <plugin>
Thanh Had73d0cb2013-02-05 15:57:14 -050067 <artifactId>maven-clean-plugin</artifactId>
Alexander Kurtakov0cac3362014-11-17 15:05:40 +020068 <version>2.6.1</version>
Thanh Had73d0cb2013-02-05 15:57:14 -050069 <configuration>
70 <filesets>
71 <fileset>
Alexander Kurtakov245ce842013-03-08 16:11:24 +020072 <directory>src</directory>
73 <includes>
74 <include>**/*</include>
75 </includes>
76 <followSymlinks>false</followSymlinks>
77 </fileset>
Thanh Had73d0cb2013-02-05 15:57:14 -050078 </filesets>
79 </configuration>
80 </plugin>
Silenio Quarti7a969c02013-07-17 13:22:36 -040081 <plugin>
82 <groupId>org.eclipse.tycho</groupId>
83 <artifactId>target-platform-configuration</artifactId>
84 <configuration>
Lakshmi Shanmugam1b46d362013-11-28 14:50:26 +053085 <executionEnvironment>J2SE-1.5</executionEnvironment>
Silenio Quarti7a969c02013-07-17 13:22:36 -040086 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>org.eclipse.tycho</groupId>
90 <artifactId>tycho-compiler-plugin</artifactId>
91 <configuration>
Lakshmi Shanmugam1b46d362013-11-28 14:50:26 +053092 <source>1.5</source>
93 <target>1.5</target>
Silenio Quarti7a969c02013-07-17 13:22:36 -040094 </configuration>
95 </plugin>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050096 </plugins>
97 </build>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050098
99</project>