forked from Minecraft/Hush
30 lines
609 B
Groovy
30 lines
609 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.zerohighdef'
|
|
version = '0.1'
|
|
|
|
sourceCompatibility = '8'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
name = 'spigotmc-repo'
|
|
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
|
}
|
|
maven {
|
|
name = 'etztech-repo'
|
|
url = 'http://repo.etztech.xyz/'
|
|
}
|
|
maven {url = 'https://jcenter.bintray.com'}
|
|
maven {url = 'https://jitpack.io'}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.spigotmc:spigot-api:1.16.3-R0.1-SNAPSHOT'
|
|
compileOnly 'xyz.etztech:plugin-api:1.0.8'
|
|
compileOnly 'xyz.etztech:javacord:0.2.0'
|
|
}
|
|
|