mirror of
https://github.com/alibaba/testable-mock.git
synced 2025-01-10 20:30:11 +08:00
60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
<?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>
|
|
<artifactId>testable-processor</artifactId>
|
|
<version>0.2.1-SNAPSHOT</version>
|
|
<name>testable-processor</name>
|
|
|
|
<properties>
|
|
<java.version>1.6</java.version>
|
|
<project.compiler.level>1.6</project.compiler.level>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<plugin.compiler.version>3.8.1</plugin.compiler.version>
|
|
<junit.version>5.6.2</junit.version>
|
|
<testable.version>0.2.1-SNAPSHOT</testable.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.alibaba.testable</groupId>
|
|
<artifactId>testable-core</artifactId>
|
|
<version>${testable.version}</version>
|
|
</dependency>
|
|
<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>${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>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|