Search Gradle plugins

com.github.mrsarm.jshell.plugin

JShell supports for your gradle project. Let's explore your classes and dependencies with jshell

https://github.com/mrsarm/jshell-plugin

Sources: https://github.com/mrsarm/jshell-plugin

Version 1.0.0

Created 03 June 2020.

JShell supports for your gradle project. Let's explore your classes and dependencies with jshell

Using the plugins DSL:

plugins {
  id("com.github.mrsarm.jshell.plugin") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.mrsarm:jshell-plugin:1.0.0")
  }
}

apply(plugin = "com.github.mrsarm.jshell.plugin")

Using the plugins DSL:

plugins {
  id "com.github.mrsarm.jshell.plugin" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.mrsarm:jshell-plugin:1.0.0"
  }
}

apply plugin: "com.github.mrsarm.jshell.plugin"

Learn how to apply plugins to subprojects