Owner:
nico
Adds Spex core and the spex JUnit Platform engine to the consuming project's test suite, configured against JUnit Jupiter. Requires that the consumer has applied a JVM plugin (java-library, java, or application) first.
https://codeberg.org/spectacular/spex-conventions
Sources: https://codeberg.org/spectacular/spex-conventions.git
Version 2026.05.10 (latest)
Created 25 May 2026.
Adds Spex core and the spex JUnit Platform engine to the consuming project's test suite, configured against JUnit Jupiter. Requires that the consumer has applied a JVM plugin (java-library, java, or application) first.
Add this plugin to your build using the plugins DSL:
plugins {
id("software.visionary.spex-testing") version "2026.05.10"
}
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("software.visionary.spex-testing:software.visionary.spex-testing.gradle.plugin:2026.05.10") }It can then be applied in the precompiled script plugin:plugins { id("software.visionary.spex-testing") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("software.visionary.spex-testing:software.visionary.spex-testing.gradle.plugin:2026.05.10") } } apply(plugin = "software.visionary.spex-testing") - Applying plugins to all subprojects .