summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 4a80049bdd99439dc081e605d6cee021d4f0d97c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
apply plugin: 'java'
group = 'net.cflems.mc.sandbox'
version = '0.2.0'

repositories {
    mavenCentral()
    maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
}

dependencies {
    implementation 'org.spigotmc:spigot-api:26.1.1-R0.1-SNAPSHOT'
}

defaultTasks 'clean', 'build'