summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 130a4894d8b3d1ea6a24182a24269a0117cdc54c (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.1.0'

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

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

defaultTasks 'clean', 'build'