| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright (c) 2021, 2022 Contributors to Eclipse Foundation. |
| Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <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.ee4j</groupId> |
| <artifactId>project</artifactId> |
| <version>1.0.7</version> |
| <relativePath /> |
| </parent> |
| |
| <groupId>org.glassfish.main.snapshots</groupId> |
| <artifactId>snapshotsmodule</artifactId> |
| <version>0.0.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <name>GlassFish Snapshots Parent</name> |
| <description>Temporary snapshot modules</description> |
| |
| <modules> |
| <module>metro</module> |
| </modules> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-install-plugin</artifactId> |
| <version>3.0.0-M1</version> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>com.googlecode.maven-download-plugin</groupId> |
| <artifactId>download-maven-plugin</artifactId> |
| <version>1.6.8</version> |
| <inherited>true</inherited> |
| <executions> |
| <execution> |
| <id>download-snapshot</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>wget</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <url>${snapshots.sources.url}</url> |
| <unpack>true</unpack> |
| <outputDirectory>${project.build.directory}</outputDirectory> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-invoker-plugin</artifactId> |
| <version>3.2.1</version> |
| <inherited>true</inherited> |
| <executions> |
| <execution> |
| <id>snapshots.execute-build</id> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <streamLogs>true</streamLogs> |
| <projectsDirectory>${snapshots.sources.directory}</projectsDirectory> |
| <pomIncludes> |
| <pomInclude>pom.xml</pomInclude> |
| </pomIncludes> |
| <!-- source:jar - ie. metro uses sources of other modules --> |
| <goals>clean source:jar install</goals> |
| <settingsFile>${basedir}/../settings.xml</settingsFile> |
| <profiles>staging,default</profiles> |
| <parallelThreads>4</parallelThreads> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |