0
This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
BungeeBans/build.gradle
2019-04-07 19:54:38 +02:00

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]
}