/
githubmirror
/
arthas
Обзор
Документация
Войти
/
githubmirror
/
arthas
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
arthas-external-command-integration-test/pom.xml
69 строк
2 KB
hengyunabc
Support loading external commands from startup jars (#3177)
24 апр 2026, 05:28
Не верифицирован
24 апр 2026, 05:28
0439887
Код
Авторство
О чём код?
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.taobao.arthas</groupId> <artifactId>arthas-all</artifactId> <version>${revision}</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>arthas-external-command-integration-test</artifactId> <name>arthas-external-command-integration-test</name> <url>https://github.com/alibaba/arthas</url> <dependencies> <dependency> <groupId>com.taobao.arthas</groupId> <artifactId>arthas-packaging</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.taobao.arthas</groupId> <artifactId>arthas-demo-external-command</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> <executions> <execution> <id>it-verify</id> <phase>verify</phase> <goals> <goal>test</goal> </goals> <configuration> <includes> <include>**/*IT.java</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>