-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
25 lines (22 loc) · 1021 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
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
maven { name 'Spigot'; url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { name 'Sonatype'; url 'https://oss.sonatype.org/content/groups/public' }
maven { name 'sk89q'; url 'http://maven.sk89q.com/artifactory/repo/' }
maven { name 'playpro'; url 'https://maven.playpro.com/' }
maven { name 'vault-repo'; url 'https://jitpack.io' }
maven { name 'dmulloy2'; url 'http://repo.dmulloy2.net/nexus/repository/public/' }
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
compileOnly('net.milkbowl.vault:VaultAPI:1.7') { transitive = false }
compileOnly('com.sk89q.worldguard:worldguard-bukkit:7.0.1-SNAPSHOT') { transitive = false }
compileOnly('com.comphenix.protocol:ProtocolLib-API:4.4.0') { transitive = false }
compile files('libs/Towny-0.97.0.0.jar')
}
compileJava {
options.compilerArgs += ["-Xlint:deprecation"]
}