From 59a537f9bbd9e935e2334d8b7ac796d92d016fc1 Mon Sep 17 00:00:00 2001 From: Michael Hackner Date: Sun, 25 Sep 2016 10:59:35 -0400 Subject: [PATCH] Use Groovy --- build.gradle | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index d727ff5..e491a8b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,13 @@ -apply plugin: 'java' -apply plugin: 'checkstyle' -apply plugin: 'findbugs' +apply plugin: 'groovy' repositories { jcenter() } +sourceCompatibility = 1.6 +targetCompatibility = 1.6 + dependencies { - compile 'com.squareup.okhttp3:okhttp:3.4.1' + compile localGroovy() + compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1' }