2026-02-02 17:08:11 +01:00
|
|
|
rootProject.name = "dev.hytalemodding"
|
|
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
|
// See documentation on https://scaffoldit.dev
|
2026-02-03 17:58:33 +01:00
|
|
|
id("dev.scaffoldit") version "0.2.4"
|
2026-02-02 17:08:11 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-03 17:58:33 +01:00
|
|
|
// Would you like to do a split project?
|
|
|
|
|
// Create a folder named "common", then configure details with `common { }`
|
|
|
|
|
|
2026-02-02 17:08:11 +01:00
|
|
|
hytale {
|
2026-02-03 17:58:33 +01:00
|
|
|
usePatchline("release")
|
|
|
|
|
useVersion("+")
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
// Any external repositories besides: MavenLocal, MavenCentral, HytaleMaven, and CurseMaven
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
// Any external dependency you also want to include
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-02 17:08:11 +01:00
|
|
|
manifest {
|
|
|
|
|
Group = "HytaleModding"
|
|
|
|
|
Name = "ExamplePlugin"
|
|
|
|
|
Main = "dev.hytalemodding.ExamplePlugin"
|
|
|
|
|
}
|
|
|
|
|
}
|