mirror of
https://github.com/alibaba/testable-mock.git
synced 2025-01-10 20:30:11 +08:00
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
|
<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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>com.alibaba.testable</groupId>
|
||
|
<artifactId>testable-maven-plugin</artifactId>
|
||
|
<packaging>maven-plugin</packaging>
|
||
|
<version>0.1.1-SNAPSHOT</version>
|
||
|
<name>testable-maven-plugin</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.maven</groupId>
|
||
|
<artifactId>maven-plugin-api</artifactId>
|
||
|
<version>3.6.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.maven</groupId>
|
||
|
<artifactId>maven-core</artifactId>
|
||
|
<version>3.6.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
||
|
<artifactId>maven-plugin-annotations</artifactId>
|
||
|
<version>3.6.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba.testable</groupId>
|
||
|
<artifactId>testable-agent</artifactId>
|
||
|
<version>0.1.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-plugin-plugin</artifactId>
|
||
|
<version>3.6.0</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|