2023-10-23 18:56:01 +08:00
|
|
|
<?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>org.example</groupId>
|
|
|
|
<artifactId>JisolGameServer</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2023-10-30 18:53:21 +08:00
|
|
|
<packaging>jar</packaging>
|
2023-10-23 18:56:01 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.jisol</groupId>
|
|
|
|
<artifactId>JNGame</artifactId>
|
2023-10-30 18:53:21 +08:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2023-10-23 18:56:01 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2023-10-30 21:22:18 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>cn.jisol.game.JGameApplication</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-10-23 18:56:01 +08:00
|
|
|
</project>
|