From 469dc20411dd7d9d6be14425a4b25805216b7153 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Sun, 21 Jan 2018 08:43:45 +0100 Subject: [PATCH] add gradle plugin: gradle-versions-plugin --- build.gradle | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/build.gradle b/build.gradle index 79409c4..111bea0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,20 @@ apply plugin: 'java' apply plugin: 'eclipse' + +apply plugin: 'com.github.ben-manes.versions' + +buildscript { + repositories { + jcenter() + } + + dependencies { + classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0' + } +} + + /* * The shared configuration for all sub-projects: */