Skip to content

Commit

Permalink
support ES 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keepcosmos committed Jul 9, 2017
1 parent fb037e7 commit 2cb3a97
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'org.openkoreantext'
version '5.4.3.2'
version '5.5.0.2'

apply plugin: 'java'
apply plugin: 'maven'
Expand All @@ -20,7 +20,7 @@ configurations {
}

ext {
elasticsearchVersion = '5.4.3'
elasticsearchVersion = '5.5.0'
openKoreanTextVersion = '2.0.1'
}

Expand All @@ -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) {
Expand All @@ -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
]
])
}
Expand Down

0 comments on commit 2cb3a97

Please sign in to comment.