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.5.6

Created 20 August 2019.

Gradle plugin supporting code generation and integration of the core XNAT web application and XNAT modules.

Using the plugins DSL:

plugins {
  id("org.nrg.xnat.build.xnat-data-builder") version "1.7.5.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.nrg.xnat.build:xnat-data-builder:1.7.5.6")
  }
}

apply(plugin = "org.nrg.xnat.build.xnat-data-builder")

Using the plugins DSL:

plugins {
  id "org.nrg.xnat.build.xnat-data-builder" version "1.7.5.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.nrg.xnat.build:xnat-data-builder:1.7.5.6"
  }
}

apply plugin: "org.nrg.xnat.build.xnat-data-builder"

Learn how to apply plugins to subprojects