arthas/testcase/pom.xml

34 lines
1.1 KiB
XML
Raw Normal View History

2018-08-31 11:49:48 +08:00
<?xml version="1.0"?>
2020-12-08 11:43:36 +08:00
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2018-08-31 11:49:48 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-all</artifactId>
<version>${revision}</version>
2019-01-18 16:30:58 +08:00
<relativePath>../pom.xml</relativePath>
2018-08-31 11:49:48 +08:00
</parent>
<artifactId>arthas-testcase</artifactId>
<name>arthas-testcase</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>