| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ############################################################################### |
| # Copyright (c) 2012, 2016 Red Hat, Inc and others. |
| # All rights reserved. This program and the accompanying materials |
| # are made available under the terms of the Eclipse Public License v1.0 |
| # which accompanies this distribution, and is available at |
| # http://www.eclipse.org/legal/epl-v10.html |
| # |
| # Contributors: |
| # Krzysztof Daniel, Red Hat, Inc. - initial API and implementation |
| ############################################################################### |
| --> |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.eclipse</groupId> |
| <artifactId>eclipse-platform-parent</artifactId> |
| <version>4.24.0-SNAPSHOT</version> |
| <relativePath>../eclipse-platform-parent</relativePath> |
| </parent> |
| |
| <groupId>eclipse.platform.swt.binaries</groupId> |
| <artifactId>eclipse.platform.swt.binaries</artifactId> |
| <packaging>pom</packaging> |
| |
| <properties> |
| <tycho.scmUrl>scm:git:https://git.eclipse.org/r/platform/eclipse.platform.swt.binaries.git</tycho.scmUrl> |
| </properties> |
| |
| <!-- |
| To build individual bundles, we specify a repository where to find parent pom, |
| in case it is not in local maven cache already |
| and that parent pom also has fuller individual-bundle profile |
| defined that is combined with this one. --> |
| <profiles> |
| <profile> |
| <id>build-individual-bundles</id> |
| <repositories> |
| <repository> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <id>eclipse-hosted</id> |
| <url>https://repo.eclipse.org/content/repositories/eclipse/</url> |
| </repository> |
| </repositories> |
| </profile> |
| </profiles> |
| |
| <modules> |
| <module>bundles/org.eclipse.swt.cocoa.macosx.x86_64</module> |
| <module>bundles/org.eclipse.swt.cocoa.macosx.aarch64</module> |
| <module>bundles/org.eclipse.swt.gtk.linux.aarch64</module> |
| <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module> |
| <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module> |
| <module>bundles/org.eclipse.swt.win32.win32.x86_64</module> |
| <!--module>bundles/org.eclipse.swt.browser.chromium.cocoa.macosx.x86_64</module> |
| <module>bundles/org.eclipse.swt.browser.chromium.gtk.linux.x86_64</module> |
| <module>bundles/org.eclipse.swt.browser.chromium.win32.win32.x86_64</module--> |
| </modules> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-clean-plugin</artifactId> |
| <configuration> |
| <filesets> |
| <fileset> |
| <directory>src</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| <followSymlinks>false</followSymlinks> |
| </fileset> |
| </filesets> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <configuration> |
| <executionEnvironment>JavaSE-11</executionEnvironment> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <configuration> |
| <source>11</source> |
| <target>11</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |