2024-02-05 00:26:03 +01: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>su.nightexpress.excellentenchants</groupId>
|
|
|
|
<artifactId>ExcellentEnchants</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2024-03-24 13:11:31 +01:00
|
|
|
<version>4.0.0</version>
|
2024-02-05 00:26:03 +01:00
|
|
|
<modules>
|
|
|
|
<module>Core</module>
|
|
|
|
<module>NMS</module>
|
|
|
|
<module>V1_19_R3</module>
|
|
|
|
<module>V1_20_R1</module>
|
|
|
|
<module>V1_20_R2</module>
|
|
|
|
<module>V1_20_R3</module>
|
|
|
|
<module>API</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
2024-03-24 13:11:31 +01:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2024-02-05 00:26:03 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2024-03-24 13:11:31 +01:00
|
|
|
<groupId>su.nightexpress.nightcore</groupId>
|
|
|
|
<artifactId>nightcore</artifactId>
|
|
|
|
<version>2.5.1</version>
|
2024-02-05 00:26:03 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|