-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (34 loc) · 1.29 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'com.i0dev.plugin.patchtest'
version '1.0.0'
repositories {
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url 'https://hub.spigotmc.org/nexus/content/groups/public/' }
maven { url 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
maven { url 'https://jitpack.io' }
flatDir { dirs rootProject.rootDir.getPath() + '/../../../../Dependencies/Java/Bukkit/' }
mavenCentral()
mavenLocal()
}
dependencies {
// Change when using SQL
compileOnly 'com.zaxxer:HikariCP:5.0.1'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.jetbrains:annotations:23.0.0'
compileOnly 'me.clip:placeholderapi:2.11.1'
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
compileOnly 'org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT'
compileOnly 'org.projectlombok:lombok:1.18.24'
compileOnly name: 'WorldEdit-6.1.9'
compileOnly name: 'FastAsyncWorldEdit-#1282-1.8'
compileOnly name: 'craftbukkit-1.8.8-R0.1-SNAPSHOT-latest'
compileOnly name: 'NBTAPI'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
}
shadowJar {
archiveBaseName.set(rootProject.getName())
archiveClassifier.set("")
}