org.mikeneck.junit.starter.normal
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.1
Created 12 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.normal") version "5.0.1"
}
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.normal:org.mikeneck.junit.starter.normal.gradle.plugin:5.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.mikeneck.junit.starter.normal") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.mikeneck.junit.starter.normal:org.mikeneck.junit.starter.normal.gradle.plugin:5.0.1") } } apply(plugin = "org.mikeneck.junit.starter.normal")
- Applying plugins to all subprojects .