diff --git a/voting-booth-gui/build.gradle b/voting-booth-gui/build.gradle index 0a74494..c3ede95 100644 --- a/voting-booth-gui/build.gradle +++ b/voting-booth-gui/build.gradle @@ -36,7 +36,11 @@ version = "0.1" version += "${isSnapshot ? '-SNAPSHOT' : ''}" - +repositories { + flatDir { + dirs '/src/main/resources/jars' + } +} dependencies { // Meerkat common @@ -52,6 +56,9 @@ dependencies { // Google protobufs compile 'com.google.protobuf:protobuf-java:3.+' + // Json configuraiton parsing + compile name: 'java-json' + testCompile 'junit:junit:4.+' runtime 'org.codehaus.groovy:groovy:2.4.+' diff --git a/voting-booth-gui/src/main/resources/jars/java-json.jar b/voting-booth-gui/src/main/resources/jars/java-json.jar new file mode 100644 index 0000000..2f211e3 Binary files /dev/null and b/voting-booth-gui/src/main/resources/jars/java-json.jar differ