-
Notifications
You must be signed in to change notification settings - Fork 0
Minimal Configuration
AzureDoom edited this page Jun 8, 2026
·
2 revisions
For a simple setup, apply the plugin, define your Hytale version, and enable the platforms you want to publish to.
plugins {
id "com.azuredoom.hytalepublisher" version "1.+"
}
version = "1.0.0"
// Define your Hytale version (for example in `build.gradle` or `gradle.properties`):
ext.hytale_version = "your-game-version"
hytalePublisher {
modtale {
enabled = true
projectId = "your-modtale-project-id"
}
curseforge {
enabled = true
projectId = "123456"
}
modifold {
enabled = true
projectId = "your-modifold-project-slug"
gameVersions = [project.hytale_version]
loaders = ["vanilla"]
}
}Then publish to all enabled platforms:
./gradlew publishAll