From 5815acdc9f27a3b74e7d7e3b958709d5a76442dc Mon Sep 17 00:00:00 2001 From: Setreuid Date: Fri, 27 Dec 2019 16:08:13 +0900 Subject: [PATCH] Fix lib --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 6d69d49..217cbe6 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'java-library' +apply plugin: 'maven' repositories { mavenCentral() @@ -8,7 +9,7 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple - implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1' + compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1' } sourceCompatibility = "1.7"