forked from IllusionTheDev/SkyblockCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (44 loc) · 1.87 KB
/
build.gradle
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
buildscript {
repositories {
maven { url = "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
}
}
group 'ImIllusion'
version '1.0'
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
targetCompatibility = 1.8
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
maven { url = 'https://nexus.hc.to/content/repositories/pub_releases' }
maven { url = 'https://hub.spigotmc.org/nexus/content/groups/public/' }
maven { url = 'https://repo.codemc.org/repository/maven-public/' }
maven { url = "https://repo.dmulloy2.net/nexus/repository/public/" }
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi' }
maven { url = 'https://mvn.intellectualsites.com/content/repositories/releases/' }
maven { url = "https://repo.glaremasters.me/repository/concuncan/" }
maven { url = "https://libraries.minecraft.net" }
}
dependencies {
implementation group: 'net.md-5', name: 'bungeecord-api', version: '1.16-R0.5-SNAPSHOT'
implementation 'org.spigotmc:spigot:1.8.8-R0.1-SNAPSHOT'
implementation 'org.projectlombok:lombok:1.18.22'
annotationProcessor('org.projectlombok:lombok:1.18.22')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'de.tr7zw:item-nbt-api-plugin:2.1.0'
implementation group: 'net.milkbowl.vault', name: 'Vault', version: '1.7.3'
implementation group: "com.grinderwolf", name: "slimeworldmanager-api", version: "2.2.1"
implementation group: 'redis.clients', name: 'jedis', version: '3.7.0'
implementation group: 'org.mongodb', name: 'mongo-java-driver', version: '3.12.7'
implementation 'com.amazonaws:aws-java-sdk:1.12.167'
implementation 'com.grinderwolf:slimeworldmanager-plugin:2.2.1'
}
shadowJar {
dependencies {
}
}