org.mikeneck.junit.starter.library
Owner:
mike_neck
Gradle plugin that provides minimum settings of junit-jupiter(junit5).
https://github.com/mike-neck/junit-starter
Sources: https://github.com/mike-neck/junit-starter
Version 5.0.2 (latest)
Created 15 November 2017.
Gradle plugin that provides minimum settings of junit-jupiter(junit5).
Add this plugin to your build using the plugins DSL:
plugins {
id("org.mikeneck.junit.starter.library") version "5.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("org.mikeneck.junit.starter.library:org.mikeneck.junit.starter.library.gradle.plugin:5.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("org.mikeneck.junit.starter.library") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.mikeneck.junit.starter.library:org.mikeneck.junit.starter.library.gradle.plugin:5.0.2") } } apply(plugin = "org.mikeneck.junit.starter.library")
- Applying plugins to all subprojects .