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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.eacg:ecs-gradle-plugin:0.1.3")
  }
}

apply(plugin = "de.eacg.ecsPlugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.eacg:ecs-gradle-plugin:0.1.3"
  }
}

apply plugin: "de.eacg.ecsPlugin"

Learn how to apply plugins to subprojects