info.pzss.zomboid
Owner: Gary Tierney
Use a Project Zomboid installation as a Java dependency
https://github.com/pz-extender/pz-gradle
Sources: https://github.com/pz-extender/pz-gradle
Version 0.2.0 (latest)
Created 15 September 2024.
Use a Project Zomboid installation as a Java dependency
Add this plugin to your build using the plugins DSL:
plugins {
id("info.pzss.zomboid") version "0.2.0"
}
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("info.pzss.zomboid:info.pzss.zomboid.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("info.pzss.zomboid") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.pzss.zomboid:info.pzss.zomboid.gradle.plugin:0.2.0") } } apply(plugin = "info.pzss.zomboid")
- Applying plugins to all subprojects .