Owner:
Esta Nagy
Adds Abort-Mission reporting support to your Gradle build
https://github.com/nagyesta/abort-mission-gradle-plugin
Sources: https://github.com/nagyesta/abort-mission-gradle-plugin
Version 5.2.13 (latest)
Created 07 December 2025.
Adds Abort-Mission reporting support to your Gradle build
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.nagyesta.abort-mission-gradle-plugin") version "5.2.13"
}
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("com.github.nagyesta.abort-mission-gradle-plugin:com.github.nagyesta.abort-mission-gradle-plugin.gradle.plugin:5.2.13") }It can then be applied in the precompiled script plugin:plugins { id("com.github.nagyesta.abort-mission-gradle-plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.nagyesta.abort-mission-gradle-plugin:com.github.nagyesta.abort-mission-gradle-plugin.gradle.plugin:5.2.13") } } apply(plugin = "com.github.nagyesta.abort-mission-gradle-plugin") - Applying plugins to all subprojects .