mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
27 lines
548 B
Groovy
27 lines
548 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.volmit.iris'
|
|
version '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
|
content {
|
|
includeGroup 'org.spigotmc'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation rootProject
|
|
implementation 'org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |