mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-09-09 15:09:23 +00:00
169 lines
6.2 KiB
XML
169 lines
6.2 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.jboss.fuse.mvnd</groupId>
|
|
<artifactId>mvnd</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
<name>Maven Daemon</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<groovyVersion>3.0.0</groovyVersion>
|
|
<jlineVersion>3.12.1</jlineVersion>
|
|
<junitVersion>4.12</junitVersion>
|
|
<logbackVersion>1.2.3</logbackVersion>
|
|
<mavenVersion>3.6.3</mavenVersion>
|
|
<pluginTestingVersion>2.9.2</pluginTestingVersion>
|
|
<slf4jVersion>1.7.25</slf4jVersion>
|
|
<takariLifecycleVersion>1.13.9</takariLifecycleVersion>
|
|
<takariProvisioVersion>0.1.56</takariProvisioVersion>
|
|
<takariLocalRepositoryVersion>0.11.2</takariLocalRepositoryVersion>
|
|
<mavenCompilerPluginVersion>3.8.1</mavenCompilerPluginVersion>
|
|
<mavenSurefirePluginVersion>2.22.2</mavenSurefirePluginVersion>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-embedder</artifactId>
|
|
<version>${mavenVersion}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.takari.aether</groupId>
|
|
<artifactId>takari-local-repository</artifactId>
|
|
<version>${takariLocalRepositoryVersion}</version>
|
|
</dependency>
|
|
|
|
<!-- Logging -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logbackVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
<version>${slf4jVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>${slf4jVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
<version>${slf4jVersion}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jline</groupId>
|
|
<artifactId>jline-terminal</artifactId>
|
|
<version>${jlineVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jline</groupId>
|
|
<artifactId>jline-terminal-jansi</artifactId>
|
|
<version>${jlineVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy</artifactId>
|
|
<version>${groovyVersion}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junitVersion}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.takari.maven.plugins</groupId>
|
|
<artifactId>takari-plugin-testing</artifactId>
|
|
<version>${pluginTestingVersion}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.takari.maven.plugins</groupId>
|
|
<artifactId>takari-plugin-integration-testing</artifactId>
|
|
<version>${pluginTestingVersion}</version>
|
|
<type>pom</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>io.takari.maven.plugins</groupId>
|
|
<artifactId>takari-lifecycle-plugin</artifactId>
|
|
<version>${takariLifecycleVersion}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>sisu-index</goal>
|
|
</goals>
|
|
<phase>process-classes</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${mavenCompilerPluginVersion}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.takari.maven.plugins</groupId>
|
|
<artifactId>provisio-maven-plugin</artifactId>
|
|
<version>${takariProvisioVersion}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>maven-distro</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>provision</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/maven-distro</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${mavenSurefirePluginVersion}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>integration-test</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includes>**/*IT.java</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |