summaryrefslogtreecommitdiff
path: root/build.gradle
blob: c47df605b32c3c10a4a4c8107da547da9973517f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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]
}