54 lines
1.4 KiB
Kotlin
54 lines
1.4 KiB
Kotlin
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*
|
|
* This generated file contains a sample Java application project to get you started.
|
|
* For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.13/userguide/building_java_projects.html in the Gradle documentation.
|
|
*/
|
|
|
|
plugins {
|
|
// Apply the application plugin to add support for building a CLI application in Java.
|
|
java
|
|
}
|
|
group = "com.fede"
|
|
|
|
repositories {
|
|
// Use Maven Central for resolving dependencies.
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
|
|
|
|
|
|
// Use JUnit Jupiter for testing.
|
|
testImplementation(libs.junit.jupiter)
|
|
|
|
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
|
|
// This dependency is used by the application.
|
|
implementation(libs.guava)
|
|
}
|
|
|
|
// Apply a specific Java toolchain to ease working on different environments.
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
named("main") {
|
|
java.srcDirs("src/main/java")
|
|
resources.srcDirs("src/main/resources")
|
|
}
|
|
}
|
|
tasks.named<Test>("test") {
|
|
// Use JUnit Platform for unit tests.
|
|
useJUnitPlatform()
|
|
}
|
|
tasks.named<ProcessResources>("processResources") {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|