2021-06-19 10:25:59 +00:00
|
|
|
<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>pw.yumc</groupId>
|
|
|
|
<artifactId>MiaoNashorn</artifactId>
|
2022-05-27 01:20:23 +00:00
|
|
|
<version>0.0.5</version>
|
2021-06-19 10:25:59 +00:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>502647092</id>
|
|
|
|
<name>MiaoWoo</name>
|
|
|
|
<email>admin@yumc.pw</email>
|
|
|
|
<url>http://www.yumc.pw</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>dev-plugins/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
|
|
|
<url>https://ci.yumc.pw/job/Minecraft/job/${project.artifactId}/</url>
|
|
|
|
</ciManagement>
|
|
|
|
<properties>
|
|
|
|
<env.GIT_COMMIT>DEV</env.GIT_COMMIT>
|
|
|
|
<update.changes>
|
|
|
|
</update.changes>
|
|
|
|
<update.changelog>
|
|
|
|
</update.changelog>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<repo.url>https://repo.yumc.pw</repo.url>
|
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>yumc-repo</id>
|
|
|
|
<url>${repo.url}/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sponge</id>
|
|
|
|
<url>https://repo.spongepowered.org/maven/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>yumc-repo</id>
|
|
|
|
<url>${repo.url}/repository/maven-public/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>jtb</id>
|
|
|
|
<name>YUMC</name>
|
|
|
|
<url>${repo.url}/repository/yumcenter/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2022-05-27 01:20:23 +00:00
|
|
|
<version>1.18.24</version>
|
2021-06-19 10:25:59 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.16.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spongepowered</groupId>
|
|
|
|
<artifactId>spongeapi</artifactId>
|
2022-05-27 01:20:23 +00:00
|
|
|
<version>7.3.0</version>
|
2021-06-19 10:25:59 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
2022-05-27 01:20:23 +00:00
|
|
|
<version>1.16-R0.4</version>
|
2021-06-19 10:25:59 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.nukkit</groupId>
|
|
|
|
<artifactId>nukkit</artifactId>
|
2022-05-27 01:20:23 +00:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2021-06-19 10:25:59 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|