org.nrg.xnat.build.generate
Owner: Rick Herrick
XNAT Gradle Plugin: Support code generation and integration of the core XNAT web application and XNAT plugins
Sources: git@bitbucket.org:xnatdev/gradle-xnat-plugin.git
Version 1.7.0-SNAPSHOT (latest)
1.7.0-SNAPSHOT
Created 14 March 2016.
XNAT Gradle Plugin: Support code generation and integration of the core XNAT web application and XNAT plugins
Using the plugins DSL:
plugins {
id("org.nrg.xnat.build.generate") version "1.7.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.nrg.xnat.build:gradle-xnat-plugin:1.7.0-SNAPSHOT")
}
}
apply(plugin = "org.nrg.xnat.build.generate")
Using the plugins DSL:
plugins {
id "org.nrg.xnat.build.generate" version "1.7.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.nrg.xnat.build:gradle-xnat-plugin:1.7.0-SNAPSHOT"
}
}
apply plugin: "org.nrg.xnat.build.generate"