From 641a562563064f9ec1b67e591c1cd8bfb8d36215 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Thu, 21 Apr 2016 07:52:57 -0500 Subject: [PATCH] Added JDB Labs maven repo to build configuration. --- build.gradle | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 55fd2ac..ab5413f 100644 --- a/build.gradle +++ b/build.gradle @@ -8,12 +8,13 @@ mainClassName = "com.jdblabs.file.treediff.TreeDiff" repositories { mavenLocal() - mavenCentral() } + mavenCentral() + maven { url "http://mvn.jdb-labs.com/repo" } } dependencies { compile 'org.codehaus.groovy:groovy-all:2.4.3' - compile 'com.jdbernard:jdb-util:3.8' - compile 'commons-codec:commons-codec:1.10' + compile 'com.jdbernard:jdb-util:3.8' + compile 'commons-codec:commons-codec:1.10' compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4' testCompile 'junit:junit:4.12'