ds2.cdi
Owner:
Lexxy
A simple plugin, adding some configuration and tasks to allow cdi tests to run
https://gitlab.com/ds_2/gradle-cdi-plugin
Sources: https://gitlab.com/ds_2/gradle-cdi-plugin.git
Version 0.0.1-SNAPSHOT
Created 13 August 2019.
A simple plugin, adding some configuration and tasks to allow cdi tests to run
Add this plugin to your build using the plugins DSL:
plugins {
id("ds2.cdi") version "0.0.1-SNAPSHOT"
}
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("ds2.cdi:ds2.cdi.gradle.plugin:0.0.1-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("ds2.cdi") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ds2.cdi:ds2.cdi.gradle.plugin:0.0.1-SNAPSHOT") } } apply(plugin = "ds2.cdi")
- Applying plugins to all subprojects .