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)
5.0.2
Created 15 November 2017.
Gradle plugin that provides minimum settings of junit-jupiter(junit5).
Using the plugins DSL:
plugins {
id("org.mikeneck.junit.starter.library") version "5.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.mikeneck.junit.starter:library:5.0.2")
}
}
apply(plugin = "org.mikeneck.junit.starter.library")
Using the plugins DSL:
plugins {
id "org.mikeneck.junit.starter.library" version "5.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.mikeneck.junit.starter:library:5.0.2"
}
}
apply plugin: "org.mikeneck.junit.starter.library"