com.dorkbox.GradleModuleInfo
Owner: Dorkbox LLC
Gradle Plugin for supporting the Java Platform Module System (JPMS, aka Java9+/jigsaw)
https://git.dorkbox.com/dorkbox/GradleModuleInfo
Sources: https://git.dorkbox.com/dorkbox/GradleModuleInfo
Version 1.1 (latest)
1.1
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"