com.github.sebersole.testkit-junit5
Owner: Steve Ebersole
Plugin for easier integration of Gradle's TestKit plugin testing library
https://github.com/sebersole/testkit-junit5-plugin
Sources: https://github.com/hibernate/hibernate-orm/tree/master/tooling/hibernate-gradle-plugin
Version 0.9.1
0.9.1
Created 23 October 2020.
Plugin for easier integration of Gradle's TestKit plugin testing library
Using the plugins DSL:
plugins {
id("com.github.sebersole.testkit-junit5") version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.sebersole:testkit-junit5-plugin:0.9.1")
}
}
apply(plugin = "com.github.sebersole.testkit-junit5")
Using the plugins DSL:
plugins {
id "com.github.sebersole.testkit-junit5" version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.sebersole:testkit-junit5-plugin:0.9.1"
}
}
apply plugin: "com.github.sebersole.testkit-junit5"