Search Gradle plugins

Version 0.1.26

0.1.26

Created 04 November 2024.

Experimental declarative plugin for the JVM ecosystem

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.experimental.jvm-ecosystem") version "0.1.26"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.experimental:plugin-jvm:0.1.26")
      }
    }
    
    apply(plugin = "org.gradle.experimental.jvm-ecosystem")
  • Applying plugins to all subprojects .