mirror of
https://github.com/SimplexDevelopment/Polarize.git
synced 2024-12-22 20:37:37 +00:00
22 lines
379 B
Groovy
22 lines
379 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'io.github.simplexdev'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
maven {
|
|
name = "spigot-repo"
|
|
url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.spigotmc:spigot-api:1.19.2-R0.1-SNAPSHOT'
|
|
implementation project(':Commons')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |