Skip to content

Commit 5f1bdac

Browse files
authored
Add 1_16_R3 to wrapper
1 parent ab86873 commit 5f1bdac

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

wrapper/1_16_R3/pom.xml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.exortions</groupId>
8+
<artifactId>ExosPluginUtils-1.16.R3</artifactId>
9+
<version>0.3.20.22</version>
10+
<description>ExosPluginUtils, or PluginUtils for short, is a simple, easy-to-use
11+
library that saves many Minecraft Spigot developers a lot of time when creating
12+
plugins. It allows Spigot developers to create a lot of NMS
13+
(net.minecraft.server) and Spigot things like Tablists, Scoreboards, etc. with
14+
a bunch of lines and classes saved, therefore improving the experience while
15+
developing plugins.
16+
</description>
17+
18+
<licenses>
19+
<license>
20+
<name>Apache License, Version 2.0</name>
21+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
22+
<distribution>repo</distribution>
23+
</license>
24+
</licenses>
25+
26+
<properties>
27+
<maven.compiler.source>8</maven.compiler.source>
28+
<maven.compiler.target>8</maven.compiler.target>
29+
</properties>
30+
31+
<repositories>
32+
<!-- Spigot repo -->
33+
<repository>
34+
<id>spigot-repo</id>
35+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
36+
</repository>
37+
<repository>
38+
<id>bungeecord-repo</id>
39+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
40+
</repository>
41+
<repository>
42+
<id>sonatype</id>
43+
<url>https://oss.sonatype.org/content/groups/public/</url>
44+
</repository>
45+
</repositories>
46+
47+
<dependencies>
48+
<!-- Spigot dependency -->
49+
<dependency>
50+
<groupId>org.spigotmc</groupId>
51+
<artifactId>spigot</artifactId>
52+
<version>1.16.5-R0.1-SNAPSHOT</version>
53+
<scope>provided</scope>
54+
</dependency>
55+
<!-- Lombok dependency -->
56+
<dependency>
57+
<groupId>org.projectlombok</groupId>
58+
<artifactId>lombok</artifactId>
59+
<version>1.18.20</version>
60+
</dependency>
61+
<!-- Annotations dependency -->
62+
<dependency>
63+
<groupId>org.jetbrains</groupId>
64+
<artifactId>annotations</artifactId>
65+
<version>RELEASE</version>
66+
<scope>compile</scope>
67+
</dependency>
68+
<!-- Reflections dependency -->
69+
<dependency>
70+
<groupId>org.reflections</groupId>
71+
<artifactId>reflections</artifactId>
72+
<version>0.9.12</version>
73+
</dependency>
74+
</dependencies>
75+
76+
</project>

0 commit comments

Comments
 (0)