diff --git a/build.gradle b/build.gradle index e4df1c6d..5858bb31 100644 --- a/build.gradle +++ b/build.gradle @@ -5,6 +5,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0' } } @@ -82,3 +83,8 @@ ext { 'ix-java' : 'com.github.akarnokd:ixjava:1.0.0' ] } + +task checkUpdates { + apply plugin: 'com.github.ben-manes.versions' + dependsOn 'dependencyUpdates' +}