-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
40 lines (31 loc) · 906 Bytes
/
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 'com.github.johnrengelman.shadow' version '5.1.0'
id 'java'
}
group 'me.lucko.luckperms'
version '1.0.0'
sourceCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
//mavenLocal()
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url 'https://repo.spongepowered.org/maven' }
}
dependencies {
compileOnly 'org.checkerframework:checker-qual:2.5.5'
compileOnly 'com.google.guava:guava:19.0'
compile 'me.lucko.luckperms:luckperms-api:4.4'
compileOnly 'net.luckperms:api:5.0'
compileOnly 'org.spigotmc:spigot-api:1.14-R0.1-SNAPSHOT'
compileOnly 'org.spongepowered:spongeapi:7.1.0'
}
shadowJar {
getArchiveClassifier().set(null)
}
artifacts {
archives shadowJar
}