Search Gradle plugins

Version 0.10.0

Created 28 February 2017.

Starts a Java REPL configured to use a Gradle project's dependencies

Using the plugins DSL:

plugins {
  id("net.cockamamy.gradle.javarepl") version "0.10.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.cockamamy.gradle:gradle-javarepl-plugin:0.10.0")
  }
}

apply(plugin = "net.cockamamy.gradle.javarepl")

Using the plugins DSL:

plugins {
  id "net.cockamamy.gradle.javarepl" version "0.10.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.cockamamy.gradle:gradle-javarepl-plugin:0.10.0"
  }
}

apply plugin: "net.cockamamy.gradle.javarepl"

Learn how to apply plugins to subprojects