Search Gradle plugins

Version 0.2 (latest)

Created 09 November 2015.

NoERP plugin provided by noerp.org

Using the plugins DSL:

plugins {
  id("org.noerp.gradle") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.noerp:gradle-plugin:0.2")
  }
}

apply(plugin = "org.noerp.gradle")

Using the plugins DSL:

plugins {
  id "org.noerp.gradle" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.noerp:gradle-plugin:0.2"
  }
}

apply plugin: "org.noerp.gradle"

Learn how to apply plugins to subprojects