summaryrefslogtreecommitdiff
path: root/build.gradle
blob: e04aa4abbad91edee70667ffae1d0cbef18bd96b (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
28
29
30
31
32
33
plugins {
    id 'java'
}

group 'com.keuin'
version '1.0-SNAPSHOT'

repositories {
    mavenCentral()
    maven {
        name 'velocity'
        url 'https://repo.velocitypowered.com/snapshots/'
    }
    maven {
        name 'bungeecord-repo'
        url "https://oss.sonatype.org/content/repositories/snapshots"
    }
}

dependencies {
    // JUnit
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
    // Velocity
    implementation 'com.velocitypowered:velocity-api:1.0.0-SNAPSHOT'
    annotationProcessor 'com.velocitypowered:velocity-api:1.0.0-SNAPSHOT'
    // BungeeCord
    implementation 'net.md-5:bungeecord-api:1.16-R0.5-SNAPSHOT'
}

test {
    useJUnitPlatform()
}