/
githubmirror
/
arthas
Обзор
Документация
Войти
/
githubmirror
/
arthas
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
math-game/pom.xml
31 строка
1 KB
hengyunabc
change target to jdk8. #2146
23 апр 2023, 11:21
23 апр 2023, 11:21
8834a0f
Код
Авторство
О чём код?
<?xml version="1.0"?> <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>math-game</artifactId> <name>math-game</name> <url>https://github.com/alibaba/arthas</url> <build> <finalName>math-game</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>demo.MathGame</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> </project>