Owner:
AzureDoom
Workspace conventions and aggregate tasks for multi-project Hytale builds.
Version 1.0.18 (latest)
Created 08 April 2026.
Workspace conventions and aggregate tasks for multi-project Hytale builds.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.azuredoom.hytale-workspace") version "1.0.18"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.azuredoom.hytale-workspace:com.azuredoom.hytale-workspace.gradle.plugin:1.0.18") }It can then be applied in the precompiled script plugin:plugins { id("com.azuredoom.hytale-workspace") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.azuredoom.hytale-workspace:com.azuredoom.hytale-workspace.gradle.plugin:1.0.18") } } apply(plugin = "com.azuredoom.hytale-workspace") - Applying plugins to all subprojects .