Hush/build.gradle

28 lines
522 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/'
}
}
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'
}