2020-09-20 21:34:23 +00:00
|
|
|
plugins {
|
2020-10-03 16:34:26 +00:00
|
|
|
id 'com.github.johnrengelman.shadow' version '6.0.0'
|
2020-09-20 21:34:23 +00:00
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'com.zerohighdef'
|
2022-02-12 16:15:37 +00:00
|
|
|
version = '0.2.2'
|
2020-09-20 21:34:23 +00:00
|
|
|
|
|
|
|
sourceCompatibility = '8'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven {
|
|
|
|
name = 'spigotmc-repo'
|
|
|
|
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = 'etztech-repo'
|
2022-02-12 16:15:37 +00:00
|
|
|
url = 'https://mvn.jojodev.com/releases/'
|
2020-09-20 21:34:23 +00:00
|
|
|
}
|
2020-09-22 21:28:33 +00:00
|
|
|
maven {url = 'https://jcenter.bintray.com'}
|
|
|
|
maven {url = 'https://jitpack.io'}
|
2020-09-20 21:34:23 +00:00
|
|
|
}
|
|
|
|
|
2020-12-04 04:06:16 +00:00
|
|
|
shadowJar {
|
|
|
|
project.configurations.implementation.canBeResolved = true
|
|
|
|
configurations = [project.configurations.implementation]
|
2020-12-18 22:08:03 +00:00
|
|
|
relocate 'xyz.etztech', 'shadow.xyz.etztech'
|
2020-12-04 04:06:16 +00:00
|
|
|
archiveClassifier.set('')
|
|
|
|
}
|
|
|
|
|
2020-09-20 21:34:23 +00:00
|
|
|
dependencies {
|
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.16.3-R0.1-SNAPSHOT'
|
2020-12-04 04:06:16 +00:00
|
|
|
implementation 'xyz.etztech:javacord:0.2.2'
|
2020-09-20 21:34:23 +00:00
|
|
|
}
|
|
|
|
|