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.2.1 (latest)

Created 05 February 2023.

JShell supports to explore your code and dependencies in your gradle project with in jshell, the official Java REPL tool (Java 9+)

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects