Search Gradle plugins

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.1.0

Created 14 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.1.0"
}

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.1.0")
    }
    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.1.0")
      }
    }
    
    apply(plugin = "ds2.cdi")
  • Applying plugins to all subprojects .