blob: 4ae09ae13285ebef8de319ceca91283fe87847f1 [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>
Sravan Kumar Lakkimsettid639bf22020-06-04 14:15:54 +053020 <version>4.17.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>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050026 <packaging>pom</packaging>
27
28 <properties>
29 <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.swt.binaries.git</tycho.scmUrl>
30 </properties>
31
Markus Kellerb23b1942015-08-19 21:34:57 +020032 <!--
33 To build individual bundles, we specify a repository where to find parent pom,
34 in case it is not in local maven cache already
35 and that parent pom also has fuller individual-bundle profile
36 defined that is combined with this one. -->
37 <profiles>
38 <profile>
39 <id>build-individual-bundles</id>
40 <repositories>
41 <repository>
42 <releases>
43 <enabled>true</enabled>
44 </releases>
45 <snapshots>
46 <enabled>true</enabled>
47 </snapshots>
48 <id>eclipse-hosted</id>
49 <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
50 </repository>
51 </repositories>
52 </profile>
53 </profiles>
Silenio Quarti291e6d22013-03-27 12:25:35 -040054
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050055 <modules>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050056 <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module>
Alexander Kurtakov25d87c42020-08-05 08:32:28 +030057 <module>bundles/org.eclipse.swt.gtk.linux.aarch64</module>
Sravan Kumar Lakkimsetticb30faf2020-05-14 11:22:55 -040058 <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050059 <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050060 <module>bundles/org.eclipse.swt.win32.win32.x86_64</module>
Guillermo Zunino122461b2020-03-03 10:46:57 -030061 <module>bundles/org.eclipse.swt.browser.chromium.cocoa.macosx.x86_64</module>
62 <module>bundles/org.eclipse.swt.browser.chromium.gtk.linux.x86_64</module>
63 <module>bundles/org.eclipse.swt.browser.chromium.win32.win32.x86_64</module>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050064 </modules>
65
66 <build>
67 <plugins>
68 <plugin>
Thanh Had73d0cb2013-02-05 15:57:14 -050069 <artifactId>maven-clean-plugin</artifactId>
Thanh Had73d0cb2013-02-05 15:57:14 -050070 <configuration>
71 <filesets>
72 <fileset>
Alexander Kurtakov245ce842013-03-08 16:11:24 +020073 <directory>src</directory>
74 <includes>
75 <include>**/*</include>
76 </includes>
77 <followSymlinks>false</followSymlinks>
78 </fileset>
Thanh Had73d0cb2013-02-05 15:57:14 -050079 </filesets>
80 </configuration>
81 </plugin>
Alexander Kurtakov85318bb2016-12-19 01:40:11 -040082 <plugin>
83 <groupId>org.eclipse.tycho</groupId>
84 <artifactId>target-platform-configuration</artifactId>
85 <configuration>
86 <executionEnvironment>JavaSE-1.8</executionEnvironment>
87 </configuration>
88 </plugin>
89 <plugin>
90 <groupId>org.eclipse.tycho</groupId>
91 <artifactId>tycho-compiler-plugin</artifactId>
92 <configuration>
93 <source>1.8</source>
94 <target>1.8</target>
95 </configuration>
96 </plugin>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050097 </plugins>
98 </build>
Bogdan Gheorghe56f15f02013-01-08 16:37:53 -050099
100</project>