Search Gradle plugins

org.nrg.xnat.build.xnat-data-builder

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.7.7-INTERNAL

Created 23 July 2020.

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.7.7-INTERNAL"
}

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.7.7-INTERNAL")
    }
    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.7.7-INTERNAL")
      }
    }
    
    apply(plugin = "org.nrg.xnat.build.xnat-data-builder")
  • Applying plugins to all subprojects .