-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
106 lines (104 loc) · 3.91 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
<?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>me.zach</groupId>
<artifactId>FallenMC</artifactId>
<version>1.0</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.github.CobbleSword.NachoSpigot</groupId>
<artifactId>api</artifactId>
<version>fd5204e8b5</version>
</dependency>
<dependency>
<groupId>me.gabriel</groupId>
<artifactId>Traits</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/plugins/Traits.jar</systemPath>
</dependency>
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>4.7.0</version>
</dependency>
<dependency>
<groupId>xyz.fallenmc</groupId>
<artifactId>Databank</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/plugins/Databank.jar</systemPath>
</dependency>
<dependency>
<groupId>xyz.fallenmc</groupId>
<artifactId>RisenBoss</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/plugins/RisenBoss.jar</systemPath>
</dependency>
<dependency>
<groupId>me.ench</groupId>
<artifactId>EnchantRefinery</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/plugins/EnchantRefinery.jar</systemPath>
</dependency>
<dependency>
<groupId>me.zach</groupId>
<artifactId>Artifacts</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/plugins/Artifacts.jar</systemPath>
</dependency>
<dependency>
<groupId>xyz.fallenmc</groupId>
<artifactId>FallenItems</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/plugins/FallenItems.jar</systemPath>
</dependency>
<dependency>
<groupId>net.jitse</groupId>
<artifactId>npclib-api</artifactId>
<version>2.11.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api-plugin</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<artifactId>Spigot-server</artifactId>
<groupId>org.bukkit</groupId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${user.home}/Desktop/Server/spigot.jar</systemPath>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
<layout>default</layout>
</repository>
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/repository/public/</url>
</repository>
</repositories>
</project>