de.zebrajaeger.sendMail
Owner:
Lars Brandt
Send mails from gradle build
https://github.com/zebrajaeger/sendmail-gradle-plugin
Sources: https://github.com/zebrajaeger/sendmail-gradle-plugin
Version 0.2.2 (latest)
Created 23 September 2022.
Send mails from gradle build with attachment(s)
Add this plugin to your build using the plugins DSL:
plugins {
id("de.zebrajaeger.sendMail") version "0.2.2"
}
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("de.zebrajaeger.sendMail:de.zebrajaeger.sendMail.gradle.plugin:0.2.2") }
It can then be applied in the precompiled script plugin:plugins { id("de.zebrajaeger.sendMail") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.zebrajaeger.sendMail:de.zebrajaeger.sendMail.gradle.plugin:0.2.2") } } apply(plugin = "de.zebrajaeger.sendMail")
- Applying plugins to all subprojects .