Initial commit
This commit is contained in:
29
app/build.gradle.kts
Normal file
29
app/build.gradle.kts
Normal file
@@ -0,0 +1,29 @@
|
||||
plugins {
|
||||
java
|
||||
}
|
||||
|
||||
group = "org.example"
|
||||
version = "1.0.0"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(25)
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// Hytale Server API - compile only since it's provided at runtime
|
||||
compileOnly(files("../server/Server/HytaleServer.jar"))
|
||||
|
||||
// Testing
|
||||
testImplementation(libs.junit)
|
||||
}
|
||||
|
||||
tasks.jar {
|
||||
// Set the archive name
|
||||
archiveBaseName.set("ExamplePlugin")
|
||||
}
|
||||
Reference in New Issue
Block a user