27 lines
532 B
Groovy
27 lines
532 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '5.0.0'
|
|
id 'java'
|
|
id 'idea'
|
|
}
|
|
|
|
group 'com.redstoner'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.md-5:bungeecord-api:1.13-SNAPSHOT'
|
|
compile 'com.github.Mojang:AccountsClient:master-SNAPSHOT'
|
|
}
|
|
|
|
shadowJar {
|
|
configurations = [project.configurations.compile]
|
|
} |