update support

This commit is contained in:
Timi
2025-07-24 17:29:23 +08:00
parent a9061d0baf
commit bc8743801d
84 changed files with 14791 additions and 831 deletions

37
pom.xml
View File

@ -6,9 +6,12 @@
<groupId>cn.forevermc.server.bukkit</groupId>
<artifactId>FMCServer</artifactId>
<version>0.0.1+1.5.2</version>
<version>0.0.1+${mc.version}</version>
<properties>
<mc.version>1.5.2</mc.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@ -16,41 +19,25 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<archive>
<manifest>
<mainClass>cn.forevermc.server.mcpc.FMCServer</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<source>1.7</source>
<target>1.7</target>
<showWarnings>true</showWarnings>
<compilerArgument>-Xlint:-options</compilerArgument>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>fmc-mcpc</artifactId>
<version>1.5.2</version>
<scope>provided</scope>
<scope>system</scope>
<systemPath>${project.basedir}/lib/mcpc.jar</systemPath>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>