forked from SirBlobman/CombatLogX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
110 lines (93 loc) · 4.13 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<project>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>com.SirBlobman.combatlogx</groupId>
<artifactId>CombatLogX-parent</artifactId>
<version>10.0.0.0-SNAPSHOT</version>
<name>CombatLogX Parent</name>
<description>This is the CombatLogX parent pom used to package the project.</description>
<url>https://www.spigotmc.org/resources/31689/</url>
<properties>
<java.version>1.8</java.version>
<spigot.version>1.14.4-R0.1-SNAPSHOT</spigot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<build.number>Unknown</build.number>
<!-- Actual CombatLogX Version -->
<!-- Format: major.minor.patch.expansiom -->
<!-- 'major' will change when the API is modified or huge changes are created -->
<!-- 'minor' will change when a new expansion is created or big changes are made -->
<!-- 'patch' will change when small changes are made to the plugin -->
<!-- 'expansion' will change when an expansion is changed or updated -->
<!-- ${build.number} is based on jenkins -->
<combatlogx.version>10.0.0.0.Beta-${build.number}</combatlogx.version>
</properties>
<modules>
<!-- Dummy APIs -->
<module>dummy-api/CrackShot</module>
<module>dummy-api/FabledSkyBlock</module>
<module>dummy-api/Residence</module>
<module>dummy-api/Towny</module>
<module>dummy-api/MassiveCore</module>
<module>dummy-api/Factions</module>
<!-- CombatLogX API-->
<module>api</module>
<!-- CombatLogX Plugin -->
<module>plugin</module>
<!-- Main Expansions -->
<module>expansion/Cheat Prevention/legacy</module>
<module>expansion/Cheat Prevention</module>
<module>expansion/Damage Tagger</module>
<module>expansion/Logger</module>
<module>expansion/Newbie Helper</module>
<module>expansion/Notifier</module>
<module>expansion/Rewards</module>
<!-- Compatibility Expansions -->
<module>expansion/compatibility/Citizens</module>
<module>expansion/compatibility/CrackShot</module>
<module>expansion/compatibility/PlaceholderAPI</module>
<module>expansion/compatibility/MVdWPlaceholderAPI</module>
<module>expansion/compatibility/SkyBlock</module>
<module>expansion/compatibility/Vanish</module>
<!-- Region Compatibility Expansions -->
<module>expansion/compatibility/Factions</module>
<module>expansion/compatibility/GriefPrevention</module>
<module>expansion/compatibility/Lands</module>
<module>expansion/compatibility/RedProtect</module>
<module>expansion/compatibility/Residence</module>
<module>expansion/compatibility/Towny</module>
<!-- WorldGuard Compatibility -->
<module>expansion/compatibility/WorldGuard/6.1</module>
<module>expansion/compatibility/WorldGuard/6.2</module>
<module>expansion/compatibility/WorldGuard/7.0</module>
<module>expansion/compatibility/WorldGuard</module>
<!-- Final Builder -->
<module>builder</module>
</modules>
<distributionManagement>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.io/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<!-- CodeMC Snapshots -->
<repository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</repository>
</repositories>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>