A Gradle plugin for checking the latest versions of dependencies
|
|
il y a 2 ans | |
|---|---|---|
| .github | il y a 2 ans | |
| gradle | il y a 2 ans | |
| src | il y a 2 ans | |
| .gitignore | il y a 5 ans | |
| README.md | il y a 2 ans | |
| apply-version-checker.sh | il y a 2 ans | |
| build.gradle.kts | il y a 2 ans | |
| gradle.properties | il y a 2 ans | |
| gradlew | il y a 2 ans | |
| gradlew.bat | il y a 2 ans | |
| settings.gradle.kts | il y a 2 ans |
Using the plugins DSL:
plugins {
id "org.sirekanyan.version-checker" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.sirekanyan:version-checker:1.0.0"
}
}
apply plugin: "org.sirekanyan.version-checker"
./gradlew versionChecker
If you don't want some dependency to be updated to the specific version, consider using lessThan inside
a versionCheckerOptions block.
For example:
versionCheckerOptions {
"com.squareup.okhttp3:logging-interceptor" lessThan "4.0"
}
This plugin is actively used during development of Spacetime, Warmongr, Anders Robot, and Knigopis