arthas/math-game/pom.xml
2023-04-23 16:21:22 +08:00

32 lines
1.1 KiB
XML

<?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>