2020-10-27 06:54:36 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
2020-12-08 16:22:14 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.alibaba.testable</groupId>
|
|
|
|
<artifactId>testable-parent</artifactId>
|
|
|
|
<version>0.3.3-SNAPSHOT</version>
|
|
|
|
<relativePath>../testable-parent</relativePath>
|
|
|
|
</parent>
|
2020-10-27 06:54:36 +08:00
|
|
|
<artifactId>testable-processor</artifactId>
|
2020-11-14 06:54:56 +08:00
|
|
|
<packaging>jar</packaging>
|
2020-10-27 06:54:36 +08:00
|
|
|
<name>testable-processor</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<junit.version>5.6.2</junit.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${plugin.compiler.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${project.compiler.level}</source>
|
|
|
|
<target>${project.compiler.level}</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
<compilerArgument>-proc:none</compilerArgument>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-11-01 09:02:00 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${plugin.surefire.version}</version>
|
|
|
|
</plugin>
|
2020-10-27 06:54:36 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-11-14 07:06:36 +08:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>tools-jar</id>
|
|
|
|
<activation>
|
|
|
|
<file>
|
|
|
|
<exists>${java.home}/../lib/tools.jar</exists>
|
|
|
|
</file>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>sun.jdk</groupId>
|
|
|
|
<artifactId>tools</artifactId>
|
|
|
|
<version>${java.version}</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${java.home}/../lib/tools.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>${plugin.source.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${plugin.javadoc.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${plugin.gpg.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>${plugin.staging.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
2020-11-17 15:33:39 +08:00
|
|
|
<serverId>oss</serverId>
|
2020-11-14 07:06:36 +08:00
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>oss</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>oss</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2020-10-27 06:54:36 +08:00
|
|
|
</project>
|