Search Gradle plugins

Version 1.0.3

Created 26 June 2015.

The plugin applies jrebel to projects according to WeltN24's best practices

Using the plugins DSL:

plugins {
  id("de.weltn24.jrebel") version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.weltn24:jrebel:1.0.3")
  }
}

apply(plugin = "de.weltn24.jrebel")

Using the plugins DSL:

plugins {
  id "de.weltn24.jrebel" version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.weltn24:jrebel:1.0.3"
  }
}

apply plugin: "de.weltn24.jrebel"

Learn how to apply plugins to subprojects