26 lines
536 B
Plaintext
26 lines
536 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "dev.protron"
|
|
version = "0.0.4"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
|
|
implementation("org.xerial:sqlite-jdbc:3.42.0.0")
|
|
}
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |