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 1.2.0
1.2.0
Created 09 June 2021.
Plugin for easier integration of Gradle's TestKit plugin testing library
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.sebersole.testkit-junit5") version "1.2.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.sebersole:testkit-junit5-plugin:1.2.0") } } apply(plugin = "com.github.sebersole.testkit-junit5")
- Applying plugins to all subprojects .