testable-mock/testable-core/pom.xml

53 lines
1.9 KiB
XML
Raw Normal View History

2020-05-30 00:28:07 +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>
<description>Unit test enhancement toolkit</description>
<groupId>com.alibaba.testable</groupId>
2020-10-22 09:43:52 +08:00
<artifactId>testable-core</artifactId>
<version>0.2.0-SNAPSHOT</version>
2020-10-19 09:46:54 +08:00
<name>testable-core</name>
2020-05-30 00:28:07 +08:00
<properties>
2020-10-22 21:05:17 +08:00
<java.version>1.6</java.version>
<project.compiler.level>1.6</project.compiler.level>
2020-05-30 00:28:07 +08:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020-10-22 21:05:17 +08:00
<plugin.compiler.version>3.8.1</plugin.compiler.version>
2020-05-30 00:28:07 +08:00
</properties>
<dependencies>
<dependency>
<groupId>sun.jdk</groupId>
<artifactId>tools</artifactId>
<version>${java.version}</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
2020-05-30 00:28:07 +08:00
</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>
</plugins>
</build>
</project>