io.github.betterme-dev.betterlibs
Owner: Team
Gradle plugin reporting third party libraries update
https://github.com/betterme-dev/BetterLibs
Sources: https://github.com/betterme-dev/BetterLibs.git
Version 7.7.8 (latest)
7.7.8
Created 25 October 2024.
Gradle plugin reporting third party libraries update
Using the plugins DSL:
plugins {
id("io.github.betterme-dev.betterlibs") version "7.7.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.betterme-dev:betterlibs:7.7.8")
}
}
apply(plugin = "io.github.betterme-dev.betterlibs")
Using the plugins DSL:
plugins {
id "io.github.betterme-dev.betterlibs" version "7.7.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.betterme-dev:betterlibs:7.7.8"
}
}
apply plugin: "io.github.betterme-dev.betterlibs"