com.github.thahnen.uniformdependencies
Owner: Tobias Hahnen
A plugin to handle dependencies based on a properties file provided containing all dependencies used
https://github.com/thahnen/UniformDependenciesPlugin
Sources: https://github.com/thahnen/UniformDependenciesPlugin.git
Version 1.0.0 (latest)
1.0.0
Created 18 May 2021.
A plugin to handle dependencies based on a properties file provided containing all dependencies used
Using the plugins DSL:
plugins {
id("com.github.thahnen.uniformdependencies") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.thahnen:UniformDependenciesPlugin:1.0.0")
}
}
apply(plugin = "com.github.thahnen.uniformdependencies")
Using the plugins DSL:
plugins {
id "com.github.thahnen.uniformdependencies" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.thahnen:UniformDependenciesPlugin:1.0.0"
}
}
apply plugin: "com.github.thahnen.uniformdependencies"