Search Gradle plugins

Version 1.1 (latest)

Created 29 August 2020.

Gradle Plugin for supporting the Java Platform Module System (JPMS, aka Java9+/jigsaw)

Using the plugins DSL:

plugins {
  id("com.dorkbox.GradleModuleInfo") version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.dorkbox:GradleModuleInfo:1.1")
  }
}

apply(plugin = "com.dorkbox.GradleModuleInfo")

Using the plugins DSL:

plugins {
  id "com.dorkbox.GradleModuleInfo" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.dorkbox:GradleModuleInfo:1.1"
  }
}

apply plugin: "com.dorkbox.GradleModuleInfo"

Learn how to apply plugins to subprojects