Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ############################################################################### |
Alexander Kurtakov | 3747db4 | 2016-08-02 18:56:00 +0300 | [diff] [blame] | 4 | # Copyright (c) 2012, 2016 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. - 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> |
Niraj Modi | 49d817a | 2019-09-06 19:11:47 +0530 | [diff] [blame] | 20 | <version>4.14.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> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 26 | <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 Keller | b23b194 | 2015-08-19 21:34:57 +0200 | [diff] [blame] | 32 | <!-- |
| 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 Quarti | 291e6d2 | 2013-03-27 12:25:35 -0400 | [diff] [blame] | 54 | |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 55 | <modules> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 56 | <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module> |
Steve Francisco | 21a7c27 | 2014-08-07 11:24:46 -0400 | [diff] [blame] | 57 | <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 58 | <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 59 | <module>bundles/org.eclipse.swt.win32.win32.x86_64</module> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 60 | </modules> |
| 61 | |
| 62 | <build> |
| 63 | <plugins> |
| 64 | <plugin> |
Thanh Ha | d73d0cb | 2013-02-05 15:57:14 -0500 | [diff] [blame] | 65 | <artifactId>maven-clean-plugin</artifactId> |
Thanh Ha | d73d0cb | 2013-02-05 15:57:14 -0500 | [diff] [blame] | 66 | <configuration> |
| 67 | <filesets> |
| 68 | <fileset> |
Alexander Kurtakov | 245ce84 | 2013-03-08 16:11:24 +0200 | [diff] [blame] | 69 | <directory>src</directory> |
| 70 | <includes> |
| 71 | <include>**/*</include> |
| 72 | </includes> |
| 73 | <followSymlinks>false</followSymlinks> |
| 74 | </fileset> |
Thanh Ha | d73d0cb | 2013-02-05 15:57:14 -0500 | [diff] [blame] | 75 | </filesets> |
| 76 | </configuration> |
| 77 | </plugin> |
Alexander Kurtakov | 85318bb | 2016-12-19 01:40:11 -0400 | [diff] [blame] | 78 | <plugin> |
| 79 | <groupId>org.eclipse.tycho</groupId> |
| 80 | <artifactId>target-platform-configuration</artifactId> |
| 81 | <configuration> |
| 82 | <executionEnvironment>JavaSE-1.8</executionEnvironment> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <groupId>org.eclipse.tycho</groupId> |
| 87 | <artifactId>tycho-compiler-plugin</artifactId> |
| 88 | <configuration> |
| 89 | <source>1.8</source> |
| 90 | <target>1.8</target> |
| 91 | </configuration> |
| 92 | </plugin> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 93 | </plugins> |
| 94 | </build> |
Bogdan Gheorghe | 56f15f0 | 2013-01-08 16:37:53 -0500 | [diff] [blame] | 95 | |
| 96 | </project> |