io.github.beatbrot.dependency-report
Owner: Christoph Loy
Show available dependency updates
https://github.com/beatbrot/gradle-dependency-report
Sources: https://github.com/beatbrot/gradle-dependency-report.git
Version 0.1.0 (latest)
0.1.0
Created 17 October 2023.
Show available dependency updates
Using the plugins DSL:
plugins {
id("io.github.beatbrot.dependency-report") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.beatbrot:gradle-dependency-report:0.1.0")
}
}
apply(plugin = "io.github.beatbrot.dependency-report")
Using the plugins DSL:
plugins {
id "io.github.beatbrot.dependency-report" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.beatbrot:gradle-dependency-report:0.1.0"
}
}
apply plugin: "io.github.beatbrot.dependency-report"