summaryrefslogtreecommitdiff
path: root/build.gradle
blob: aaf2e25136b7ce904b2eb770cd848560b78876ef (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:1.21.7-R0.1-SNAPSHOT'
}

defaultTasks 'clean', 'build'