-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
40 lines (35 loc) · 1.48 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.magmaguy</groupId>
<artifactId>EasyMinecraftGoals-manager</artifactId>
<version>1.13.4</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<!-- This is the project parent, do not create further artifacts -->
<packaging>pom</packaging>
<modules>
<module>EasyMinecraftGoals/dist</module>
<module>EasyMinecraftGoals/core</module>
<module>EasyMinecraftGoals/v1_19_R3</module>
<module>EasyMinecraftGoals/v1_20_R1</module>
<module>EasyMinecraftGoals/v1_20_R2</module>
<module>EasyMinecraftGoals/v1_20_R3</module>
<module>EasyMinecraftGoals/v1_20_R4</module>
<module>EasyMinecraftGoals/v1_21_R1</module>
</modules>
<distributionManagement>
<snapshotRepository>
<id>magmaguy-repo-snapshots</id>
<url>https://repo.magmaguy.com/snapshots</url>
</snapshotRepository>
<repository>
<id>magmaguy-repo-snapshots</id>
<name>MagmaGuy's Repository</name>
<url>https://repo.magmaguy.com/releases</url>
</repository>
</distributionManagement>
</project>