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.7.7-INTERNAL
1.7.7-INTERNAL
Created 23 July 2020.
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.7-INTERNAL"
}
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.7-INTERNAL")
}
}
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.7-INTERNAL"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.nrg.xnat.build:xnat-data-builder:1.7.7-INTERNAL"
}
}
apply plugin: "org.nrg.xnat.build.xnat-data-builder"