嗯,正如你所见,这项目叫做SManager-S
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SManager-S/pom.xml

30 lines
1.0 KiB

3 years ago
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.lensfrex.smanager-s</groupId>
<artifactId>SManager-S</artifactId>
<version>0.0.1p</version>
3 years ago
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<mainClass>me.lensfrex.manager.Main</mainClass>
</archive>
</configuration>
</plugin>
</plugins>
</build>
3 years ago
</project>