Search Gradle plugins

org.nrg.xnat.build.generate

XNAT Gradle Plugin: Support code generation and integration of the core XNAT web application and XNAT plugins

http://www.xnat.org/

Sources: git@bitbucket.org:xnatdev/gradle-xnat-plugin.git

Version 1.7.0-SNAPSHOT (latest)

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"

Learn how to apply plugins to subprojects