Search Gradle plugins

de.eacg.ecsPlugin

EACG Code Scan gradle plugin. A gradle plugin to transfer dependency information to ECS server.

https://github.com/eacg-gmbh/ecs-gradle-plugin

Sources: https://github.com/eacg-gmbh/ecs-gradle-plugin

Version 0.1.3 (latest)

Created 15 April 2016.

EACG Code Scan gradle plugin. A gradle plugin to transfer dependency information to ECS server.

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.eacg.ecsPlugin") version "0.1.3"
}

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.eacg.ecsPlugin:de.eacg.ecsPlugin.gradle.plugin:0.1.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.eacg.ecsPlugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.eacg.ecsPlugin:de.eacg.ecsPlugin.gradle.plugin:0.1.3")
      }
    }
    
    apply(plugin = "de.eacg.ecsPlugin")
  • Applying plugins to all subprojects .