Add gradle-version-plugin to track dependencies updates.

This commit is contained in:
Anatoly Sablin
2019-07-21 17:49:38 +03:00
parent 4d488a3fc8
commit 7f284ac71e

View File

@@ -24,6 +24,7 @@ apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'idea'
apply plugin: 'com.github.ben-manes.versions'
def confFileName = "ma1sd.example.yaml"
def distDir = "${project.buildDir}/dist"
@@ -77,6 +78,7 @@ buildscript {
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.3'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
}
}