de.jjohannes.java-module-testing
Owner: Jendrik Johannes
A plugin to test Java Modules (whitebox and blackbox) without the hassle.
https://github.com/gradlex-org/java-module-testing
Sources: https://github.com/jjohannes/java-module-testing
Version 0.2 (latest)
Created 18 August 2022.
!!! Plugin ID changed to 'org.gradlex.java-module-testing' !!!
Add this plugin to your build using the plugins DSL:
plugins {
id("de.jjohannes.java-module-testing") version "0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.jjohannes.java-module-testing:de.jjohannes.java-module-testing.gradle.plugin:0.2") }
It can then be applied in the precompiled script plugin:plugins { id("de.jjohannes.java-module-testing") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.jjohannes.java-module-testing:de.jjohannes.java-module-testing.gradle.plugin:0.2") } } apply(plugin = "de.jjohannes.java-module-testing")
- Applying plugins to all subprojects .