Skip to content

Commit

Permalink
Merge pull request #3 from mjuzhj23/6.4.0
Browse files Browse the repository at this point in the history
#2 오류 수정
  • Loading branch information
netcrazy authored Jan 18, 2019
2 parents 277b641 + db604c5 commit 3896c6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
14 changes: 6 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'java'
sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'

version = '6.2.3.0'
version = '6.4.0.0'
jar {
manifest {
attributes 'Implementation-Title': 'Elasticsearch Jaso Analyzer Plugin',
Expand All @@ -17,7 +17,7 @@ repositories {

dependencies {
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
compile 'org.elasticsearch:elasticsearch:6.2.3'
compile 'org.elasticsearch:elasticsearch:6.4.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
testCompile group: 'junit', name: 'junit', version: '4.+'
Expand All @@ -37,12 +37,10 @@ uploadArchives {
}

task buildPluginZip(type: Zip, dependsOn:[':jar']) {
into('elasticsearch') {
baseName = 'jaso-analyzer-plugin'
classifier = 'plugin'
from files(libsDir)
from 'src/main/resources'
}
baseName = 'jaso-analyzer-plugin'
classifier = 'plugin'
from files(libsDir)
from 'src/main/resources'
}

artifacts {
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/plugin-descriptor.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description=Jaso Korean Text Analyzer
version=6.2.3.0
version=6.4.0.0
name=jaso-analyzer
classname=org.elasticsearch.plugin.analysis.JasoAnalysisPlugin
java.version=1.8
elasticsearch.version=6.2.3
elasticsearch.version=6.4.0

0 comments on commit 3896c6c

Please sign in to comment.