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

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

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

defaultTasks 'clean', 'build'