Skip to content

Commit 42489f0

Browse files
committed
HCFPractice | v1.0
Added Main Files
1 parent 12225ed commit 42489f0

File tree

504 files changed

+45390
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

504 files changed

+45390
-0
lines changed

Core/pom.xml

Lines changed: 248 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,248 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<artifactId>HCFPractice</artifactId>
9+
<groupId>me.hcfalerts.practice</groupId>
10+
<version>1.0</version>
11+
12+
<properties>
13+
<maven.compiler.source>8</maven.compiler.source>
14+
<maven.compiler.target>8</maven.compiler.target>
15+
</properties>
16+
17+
<build>
18+
<defaultGoal>clean install</defaultGoal>
19+
<finalName>HCFPractice-${project.version}</finalName>
20+
21+
<resources>
22+
<resource>
23+
<directory>src/main/resources</directory>
24+
<filtering>true</filtering>
25+
</resource>
26+
</resources>
27+
<plugins>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-compiler-plugin</artifactId>
31+
<version>3.6.1</version>
32+
33+
<configuration>
34+
<source>1.8</source>
35+
<target>1.8</target>
36+
</configuration>
37+
</plugin>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-shade-plugin</artifactId>
41+
<version>3.0.0</version>
42+
<configuration>
43+
<createDependencyReducedPom>false</createDependencyReducedPom>
44+
<shadedArtifactAttached>false</shadedArtifactAttached>
45+
<relocations>
46+
<relocation>
47+
<pattern>org.bstats</pattern>
48+
<!-- Replace this with your package! -->
49+
<shadedPattern>me.hcfalerts.utilities</shadedPattern>
50+
</relocation>
51+
</relocations>
52+
</configuration>
53+
<executions>
54+
<execution>
55+
<phase>package</phase>
56+
<goals>
57+
<goal>shade</goal>
58+
</goals>
59+
</execution>
60+
</executions>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
65+
<repositories>
66+
<repository>
67+
<id>codemc-repo</id>
68+
<url>https://repo.codemc.io/repository/maven-public/</url>
69+
</repository>
70+
<repository>
71+
<id>placeholderapi</id>
72+
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
73+
</repository>
74+
<repository>
75+
<id>jitpack.io</id>
76+
<url>https://jitpack.io</url>
77+
</repository>
78+
</repositories>
79+
80+
<dependencies>
81+
<!--spigots-->
82+
<dependency>
83+
<groupId>paperspigot</groupId>
84+
<artifactId>paper</artifactId>
85+
<version>asd-SNAPSHOT</version>
86+
<scope>system</scope>
87+
<systemPath>${project.basedir}/libs/paper-1.8.8-443.jar</systemPath>
88+
</dependency>
89+
<dependency>
90+
<groupId>pt.foxspigot.jar</groupId>
91+
<artifactId>foxspigot-parent</artifactId>
92+
<version>2-SNAPSHOT</version>
93+
<scope>system</scope>
94+
<systemPath>${project.basedir}/libs/FoxSpigot.jar</systemPath>
95+
</dependency>
96+
<dependency>
97+
<groupId>club.insaneprojects.insanepaper</groupId>
98+
<artifactId>insanepaper-parent</artifactId>
99+
<version>3-SNAPSHOT</version>
100+
<scope>system</scope>
101+
<systemPath>${project.basedir}/libs/InsanePaper.jar</systemPath>
102+
</dependency>
103+
104+
<dependency>
105+
<groupId>org.projectlombok</groupId>
106+
<artifactId>lombok</artifactId>
107+
<version>1.18.24</version>
108+
<scope>provided</scope>
109+
</dependency>
110+
111+
<!--dependencies-->
112+
<dependency>
113+
<groupId>us.myles.ViaVersion</groupId>
114+
<artifactId>ViaVersion</artifactId>
115+
<version>3.2.1</version>
116+
<scope>system</scope>
117+
<systemPath>${project.basedir}/libs/ViaVersion-3.2.1.jar</systemPath>
118+
</dependency>
119+
<dependency>
120+
<groupId>com.sk89.worldedit.WorldEdit</groupId>
121+
<artifactId>WorldEdit</artifactId>
122+
<version>6.1.7</version>
123+
<scope>system</scope>
124+
<systemPath>${project.basedir}/libs/WorldEdit.jar</systemPath>
125+
</dependency>
126+
<dependency>
127+
<groupId>org.mongodb</groupId>
128+
<artifactId>mongo-java-driver</artifactId>
129+
<version>3.12.10</version>
130+
<scope>compile</scope>
131+
</dependency>
132+
<dependency>
133+
<groupId>me.clip</groupId>
134+
<artifactId>placeholderapi</artifactId>
135+
<version>2.10.9</version>
136+
<scope>provided</scope>
137+
</dependency>
138+
<dependency>
139+
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
140+
<artifactId>holographicdisplays-api</artifactId>
141+
<version>2.4.0</version>
142+
<scope>provided</scope>
143+
</dependency>
144+
<dependency>
145+
<groupId>com.comphenix.protocol</groupId>
146+
<artifactId>ProtocolLib</artifactId>
147+
<version>4.7.0</version>
148+
<scope>system</scope>
149+
<systemPath>${project.basedir}/libs/ProtocolLib.jar</systemPath>
150+
</dependency>
151+
<dependency>
152+
<groupId>dev.risas.ability</groupId>
153+
<artifactId>PandaAbilityAPI</artifactId>
154+
<version>1.0.1</version>
155+
<scope>system</scope>
156+
<systemPath>${project.basedir}/libs/PandaAbilityAPI-1.0.1-SNAPSHOT.jar</systemPath>
157+
</dependency>
158+
159+
<!-- Vault -->
160+
<dependency>
161+
<groupId>com.github.MilkBowl</groupId>
162+
<artifactId>VaultAPI</artifactId>
163+
<version>1.7</version>
164+
<scope>provided</scope>
165+
</dependency>
166+
167+
<!-- BukkitAPI -->
168+
<dependency>
169+
<groupId>com.lunarclient</groupId>
170+
<artifactId>LunarClient-API</artifactId>
171+
<version>1.8.8</version>
172+
<scope>system</scope>
173+
<systemPath>${project.basedir}/libs/bukkitapi.jar</systemPath>
174+
</dependency>
175+
176+
<!-- AquaCore API -->
177+
<dependency>
178+
<groupId>me.activated.core</groupId>
179+
<artifactId>AquaCoreAPI</artifactId>
180+
<version>API</version>
181+
<scope>system</scope>
182+
<systemPath>${project.basedir}/libs/permissions/AquaCoreAPI.jar</systemPath>
183+
</dependency>
184+
185+
<!-- Hestia API -->
186+
<dependency>
187+
<groupId>me.quartz.hestia</groupId>
188+
<artifactId>HestiaAPI</artifactId>
189+
<version>1.0</version>
190+
<scope>system</scope>
191+
<systemPath>${project.basedir}/libs/permissions/HestiaAPI.jar</systemPath>
192+
</dependency>
193+
194+
<!-- mCore API -->
195+
<dependency>
196+
<groupId>mCore</groupId>
197+
<artifactId>mCore</artifactId>
198+
<version>1.0</version>
199+
<scope>system</scope>
200+
<systemPath>${project.basedir}/libs/permissions/mCoreAPI.jar</systemPath>
201+
</dependency>
202+
203+
<!-- Zoom API -->
204+
<dependency>
205+
<groupId>Zoom</groupId>
206+
<artifactId>Zoom-API</artifactId>
207+
<version>1.0</version>
208+
<scope>system</scope>
209+
<systemPath>${project.basedir}/libs/permissions/Zoom-API-1.4.jar</systemPath>
210+
</dependency>
211+
212+
<!-- Mizu API -->
213+
<dependency>
214+
<groupId>com.broustudio.MizuAPI</groupId>
215+
<artifactId>MizuAPI</artifactId>
216+
<version>1.0</version>
217+
<scope>system</scope>
218+
<systemPath>${project.basedir}/libs/permissions/MizuAPI.jar</systemPath>
219+
</dependency>
220+
221+
<!-- LuckPerms API -->
222+
<dependency>
223+
<groupId>net.luckperms</groupId>
224+
<artifactId>api</artifactId>
225+
<version>5.2</version>
226+
<scope>system</scope>
227+
<systemPath>${project.basedir}/libs/LuckPerms.jar</systemPath>
228+
</dependency>
229+
230+
<!-- SurfCore API #349937140802519051 -->
231+
<dependency>
232+
<groupId>com.skitbet.surfapi</groupId>
233+
<artifactId>SurfAPI</artifactId>
234+
<version>1.0</version>
235+
<scope>system</scope>
236+
<systemPath>${project.basedir}/libs/permissions/PvPSurfApiForYang.jar</systemPath>
237+
</dependency>
238+
239+
<!-- bStats -->
240+
<dependency>
241+
<groupId>org.bstats</groupId>
242+
<artifactId>bstats-bukkit</artifactId>
243+
<version>3.0.2</version>
244+
<scope>compile</scope>
245+
</dependency>
246+
</dependencies>
247+
248+
</project>

0 commit comments

Comments
 (0)