org.nrg.xnat.build.xnat-data-builder
Owner: XNAT Development Team
Gradle plugin supporting code generation and integration of the core XNAT web application and XNAT modules.
https://bitbucket.org/xnatdev/xnat-data-builder
Sources: https://bitbucket.org/xnatdev/xnat-data-builder.git
Version 1.8.0 (latest)
Created 05 March 2021.
Gradle plugin supporting code generation and integration of the core XNAT web application and XNAT modules.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.nrg.xnat.build.xnat-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.xnat.build.xnat-data-builder:org.nrg.xnat.build.xnat-data-builder.gradle.plugin:1.8.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.nrg.xnat.build.xnat-data-builder") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.nrg.xnat.build.xnat-data-builder:org.nrg.xnat.build.xnat-data-builder.gradle.plugin:1.8.0") } } apply(plugin = "org.nrg.xnat.build.xnat-data-builder")
- Applying plugins to all subprojects .