Search Gradle plugins

Version 0.7.0

Created 17 December 2021.

Gradle plugin that executes decycle dependency checks

Using the plugins DSL:

plugins {
  id("de.obqo.decycle") version "0.7.0"
}

Using legacy plugin application:

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

apply(plugin = "de.obqo.decycle")

Using the plugins DSL:

plugins {
  id "de.obqo.decycle" version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.obqo.decycle:decycle-gradle-plugin:0.7.0"
  }
}

apply plugin: "de.obqo.decycle"

Learn how to apply plugins to subprojects