From 2cb3a97dc182c4951fad689c2e383532f0182342 Mon Sep 17 00:00:00 2001 From: keepcosmos Date: Sun, 9 Jul 2017 20:56:21 +0900 Subject: [PATCH] support ES 5.5.0 --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 26aca9d..c07ee69 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ group 'org.openkoreantext' -version '5.4.3.2' +version '5.5.0.2' apply plugin: 'java' apply plugin: 'maven' @@ -20,7 +20,7 @@ configurations { } ext { - elasticsearchVersion = '5.4.3' + elasticsearchVersion = '5.5.0' openKoreanTextVersion = '2.0.1' } @@ -30,8 +30,8 @@ dependencies { compileOnly group: 'org.elasticsearch', name: 'elasticsearch', version: elasticsearchVersion testCompile group: 'org.elasticsearch.test', name: 'framework', version: elasticsearchVersion - testCompile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.7' - testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.7' + testCompile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8.2' + testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8.2' } task makePluginDescriptor(type: Copy) { @@ -44,7 +44,7 @@ task makePluginDescriptor(type: Copy) { 'description': 'Korean analysis plugin integrates open-korean-text module into elasticsearch.', 'version': '1.0.0', 'javaVersion': sourceCompatibility, - 'elasticsearchVersion' : '5.4.3' + 'elasticsearchVersion' : elasticsearchVersion ] ]) }