org.nrg.xdat.build.xdat-data-builder
Owner: Rick Herrick
Base functionality for packaging XNAT plugins, including base code and template generation
Sources: https://bitbucket.org/xnatdev/xdat-data-builder
Version 1.8.0 (latest)
Created 09 March 2021.
Base functionality for packaging XNAT plugins, including base code and template generation
Add this plugin to your build using the plugins DSL:
plugins {
id("org.nrg.xdat.build.xdat-data-builder") version "1.8.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("org.nrg.xdat.build.xdat-data-builder:org.nrg.xdat.build.xdat-data-builder.gradle.plugin:1.8.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.nrg.xdat.build.xdat-data-builder") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.nrg.xdat.build.xdat-data-builder:org.nrg.xdat.build.xdat-data-builder.gradle.plugin:1.8.0") } } apply(plugin = "org.nrg.xdat.build.xdat-data-builder")
- Applying plugins to all subprojects .