mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-09-08 08:27:45 +00:00
558 lines
20 KiB
XML
558 lines
20 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright 2019-2021 the original author or authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
-->
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-parent</artifactId>
|
|
<version>39</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd</artifactId>
|
|
<version>1.0.0-m4</version>
|
|
|
|
<packaging>pom</packaging>
|
|
<name>Maven Daemon - Parent</name>
|
|
<inceptionYear>2019</inceptionYear>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache-2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<modules>
|
|
<module>build-plugin</module>
|
|
<module>native</module>
|
|
<module>agent</module>
|
|
<module>helper</module>
|
|
<module>common</module>
|
|
<module>client</module>
|
|
<module>daemon</module>
|
|
<module>dist</module>
|
|
<module>integration-tests</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<connection>scm:git:${repository.url}.git</connection>
|
|
<developerConnection>scm:git:${repository.url}.git</developerConnection>
|
|
<tag>head</tag>
|
|
<url>${repository.url}</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven-dist.required.jdk>8</maven-dist.required.jdk>
|
|
<project.build.outputTimestamp>2023-01-28T13:34:07Z</project.build.outputTimestamp>
|
|
<trimStackTrace>false</trimStackTrace>
|
|
<project.github.repository>apache/maven-mvnd</project.github.repository>
|
|
<repository.url>github.com:${project.github.repository}</repository.url>
|
|
|
|
<!-- dependency versions a..z -->
|
|
<apiguardian-api.version>1.0.0</apiguardian-api.version>
|
|
<assertj.version>3.24.2</assertj.version>
|
|
<commons-compress.version>1.22</commons-compress.version>
|
|
<graalvm.version>22.3.1</graalvm.version>
|
|
<graalvm.plugin.version>0.9.18</graalvm.plugin.version>
|
|
<groovy.version>4.0.7</groovy.version>
|
|
<jakarta.inject.version>1.0</jakarta.inject.version>
|
|
<jansi.version>2.4.0</jansi.version>
|
|
<jline.version>3.22.0</jline.version>
|
|
<junit.jupiter.version>5.9.2</junit.jupiter.version>
|
|
<logback.version>1.2.11</logback.version>
|
|
<maven.version>4.0.0-alpha-4</maven.version>
|
|
<!-- Keep in sync with Maven -->
|
|
<maven.resolver.version>1.9.4</maven.resolver.version>
|
|
<slf4j.version>1.7.36</slf4j.version>
|
|
<sisu.version>0.9.0.M1</sisu.version>
|
|
|
|
<!-- plugin versions a..z -->
|
|
<buildnumber-maven-plugin.version>3.0.0</buildnumber-maven-plugin.version>
|
|
<compiler.version>3.10.1</compiler.version>
|
|
<groovy-maven-plugin.version>2.1.0</groovy-maven-plugin.version>
|
|
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
|
|
<maven-install-plugin.version>3.1.0</maven-install-plugin.version>
|
|
<maven-shade-plugin.version>3.4.1</maven-shade-plugin.version>
|
|
<mrm.version>1.4.1</mrm.version>
|
|
<surefire.version>3.0.0-M8</surefire.version>
|
|
<!-- keep in sync with junit-platform-launcher.version -->
|
|
<junit-platform-launcher.version>1.3.2</junit-platform-launcher.version>
|
|
<!-- keep in sync with surefire.version -->
|
|
<release.plugin.version>3.0.0-M8</release.plugin.version>
|
|
<takari-lifecycle.version>1.13.9</takari-lifecycle.version>
|
|
<takari-provisio.version>1.0.19</takari-provisio.version>
|
|
|
|
<javassist.version>3.29.2-GA</javassist.version>
|
|
<maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
|
|
<xstream.version>1.4.20</xstream.version>
|
|
<plexus-interactivity-api.version>1.0</plexus-interactivity-api.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-core</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>${commons-compress.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.graalvm.sdk</groupId>
|
|
<artifactId>graal-sdk</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy</artifactId>
|
|
<version>${groovy.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.graalvm.nativeimage</groupId>
|
|
<artifactId>svm</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>junit-bom</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>jakarta.inject</groupId>
|
|
<artifactId>jakarta.inject-api</artifactId>
|
|
<version>${jakarta.inject.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-model</artifactId>
|
|
<version>${maven.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-embedder</artifactId>
|
|
<version>${maven.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>apache-maven</artifactId>
|
|
<version>${maven.version}</version>
|
|
<classifier>bin</classifier>
|
|
<type>tar.gz</type>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
<artifactId>maven-resolver-api</artifactId>
|
|
<version>${maven.resolver.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
<artifactId>maven-resolver-impl</artifactId>
|
|
<version>${maven.resolver.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
<artifactId>maven-resolver-spi</artifactId>
|
|
<version>${maven.resolver.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
<artifactId>maven-resolver-util</artifactId>
|
|
<version>${maven.resolver.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
|
<version>${maven.resolver.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
<artifactId>maven-resolver-transport-wagon</artifactId>
|
|
<version>${maven.resolver.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>${assertj.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-native</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-agent</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-dist</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-daemon</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven.daemon</groupId>
|
|
<artifactId>mvnd-helper-agent</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
<artifactId>org.eclipse.sisu.inject</artifactId>
|
|
<version>${sisu.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jline</groupId>
|
|
<artifactId>jline-terminal</artifactId>
|
|
<version>${jline.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jline</groupId>
|
|
<artifactId>jline-terminal-jansi</artifactId>
|
|
<version>${jline.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.fusesource.jansi</groupId>
|
|
<artifactId>jansi</artifactId>
|
|
<version>${jansi.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>${javassist.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-interactivity-api</artifactId>
|
|
<version>${plexus-interactivity-api.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
|
<configuration>
|
|
<java>
|
|
<includes>
|
|
<include>src/main/java/**/*.java</include>
|
|
<include>src/main/java-fallback/**/*.java</include>
|
|
<include>src/main/java-mvnd/**/*.java</include>
|
|
<include>src/main/java11/**/*.java</include>
|
|
<include>src/main/java16/**/*.java</include>
|
|
<include>src/test/java/**/*.java</include>
|
|
</includes>
|
|
</java>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.rat</groupId>
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
<configuration>
|
|
<excludes combine.children="append">
|
|
<exclude>**/*.png</exclude>
|
|
<exclude>**/*.json</exclude>
|
|
<exclude>**/.mvn/*</exclude>
|
|
<exclude>.cache/**</exclude>
|
|
<exclude>.mvn/**/*</exclude>
|
|
<exclude>*.adoc</exclude>
|
|
<exclude>*.md</exclude>
|
|
<exclude>src/test/projects/**/.classpath</exclude>
|
|
<exclude>src/test/projects/**/.project</exclude>
|
|
<exclude>src/test/projects/**/.settings/**</exclude>
|
|
<exclude>src/test/projects/**/target/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>ca.vanzyl.provisio.maven.plugins</groupId>
|
|
<artifactId>provisio-maven-plugin</artifactId>
|
|
<version>${takari-provisio.version}</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>${xstream.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${compiler.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>${surefire.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${surefire.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven-jar-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>${maven-install-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>${maven-shade-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.gmavenplus</groupId>
|
|
<artifactId>gmavenplus-plugin</artifactId>
|
|
<version>${groovy-maven-plugin.version}</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<version>${groovy.version}</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>mrm-maven-plugin</artifactId>
|
|
<version>${mrm.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
<version>${buildnumber-maven-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.graalvm.buildtools</groupId>
|
|
<artifactId>native-maven-plugin</artifactId>
|
|
<version>${graalvm.plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>${release.plugin.version}</version>
|
|
<configuration>
|
|
<useReleaseProfile>false</useReleaseProfile>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.12.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-wrapper-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>checkstyle-check</id>
|
|
<phase>none</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.gmavenplus</groupId>
|
|
<artifactId>gmavenplus-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>set-platform-properties</id>
|
|
<goals>
|
|
<goal>execute</goal>
|
|
</goals>
|
|
<phase>generate-sources</phase>
|
|
<configuration>
|
|
<scripts>
|
|
<script>// Naming conventions coined by GraalVM
|
|
// https://github.com/graalvm/graalvm-ce-builds/releases/
|
|
String osName = System.getProperty('os.name').toLowerCase(Locale.ROOT)
|
|
if (osName.startsWith('windows')) {
|
|
project.properties['os.detected.name'] = 'windows'
|
|
} else if (osName.startsWith('linux')) {
|
|
project.properties['os.detected.name'] = 'linux'
|
|
} else if (osName.startsWith('osx') || osName.startsWith('mac os x')) {
|
|
project.properties['os.detected.name'] = 'darwin'
|
|
} else {
|
|
project.properties['os.detected.name'] = osName
|
|
}
|
|
String osArch = System.getProperty('os.arch').toLowerCase(Locale.ROOT)
|
|
if (osArch.equals('amd64') || osArch.equals('x86_64')) {
|
|
project.properties['os.detected.arch'] = 'amd64'
|
|
} else {
|
|
project.properties['os.detected.arch'] = osArch
|
|
}</script>
|
|
</scripts>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>source-distribution</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
<executions>
|
|
<execution>
|
|
<id>build-with-jdk11+</id>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
<phase>validate</phase>
|
|
<configuration>
|
|
<rules>
|
|
<requireJavaVersion>
|
|
<version>[11,)</version>
|
|
</requireJavaVersion>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>${maven-assembly-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>create-source-distribution</id>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<finalName>maven-mvnd-${project.version}</finalName>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|