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-RC6

Created 29 January 2023.

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.2.1-RC6"
}

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-RC6")
  }
}

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

Using the plugins DSL:

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

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-RC6"
  }
}

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

Learn how to apply plugins to subprojects