forked from nulli0n/NexEngine-spigot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.3 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.0'
}
archivesBaseName = "Tribufu-NexEngine"
version "2.3.0"
repositories {
mavenCentral()
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots' }
maven { url 'https://repo.papermc.io/repository/maven-public' }
maven { url 'https://repo.extendedclip.com/content/repositories/placeholderapi' }
maven { url 'https://repo.opencollab.dev/maven-snapshots'}
maven { url 'https://libraries.minecraft.net' }
maven { url 'https://jitpack.io' }
}
dependencies {
// implementation 'io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT'
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
compileOnly 'me.clip:placeholderapi:2.10.10'
compileOnly 'org.geysermc.floodgate:api:2.2.0-SNAPSHOT'
implementation 'com.mojang:authlib:5.0.47'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'it.unimi.dsi:fastutil:8.5.11'
implementation 'org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT'
implementation 'org.xerial:sqlite-jdbc:3.41.2.2'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
test {
useJUnitPlatform()
}
processResources {
doFirst {
file("$buildDir/resources/main").listFiles().each {
it.delete()
}
}
}