Skip to content

Commit

Permalink
Support ES 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
keepcosmos committed Dec 24, 2017
1 parent 363163e commit ed99405
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Binary file modified .DS_Store
Binary file not shown.
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'org.openkoreantext'
version '6.0.0.2'
version '6.1.1.2'

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

ext {
elasticsearchVersion = '6.0.0'
elasticsearchVersion = '6.1.1'
openKoreanTextVersion = '2.1.0'
}

Expand Down Expand Up @@ -64,6 +64,12 @@ task javadocJar(type: Jar) {
from javadoc
}

tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
options.addStringOption('charSet', 'UTF-8')
}

task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* Phrase Extractor. For extracting phrase, it delegates token to {@link OpenKoreanTextProcessor}
*
* {@see https://github.com/open-korean-text/open-korean-text/blob/master/src/main/scala/org/openkoreantext/processor/phrase_extractor/KoreanPhraseExtractor.scala}
*/
public class OpenKoreanTextPhraseExtractor extends OpenKoreanTextTokenFilter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

/**
* Stems Adjectives and Verbs tokens.
*
* {@see https://github.com/open-korean-text/open-korean-text/blob/master/src/main/scala/org/openkoreantext/processor/stemmer/KoreanStemmer.scala}
*/
public final class OpenKoreanTextStemmer extends OpenKoreanTextTokenFilter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

/**
* Provides Korean tokenization.
*
* {@see https://github.com/open-korean-text/open-korean-text/blob/master/src/main/scala/org/openkoreantext/processor/tokenizer/KoreanTokenizer.scala}
*/
public class OpenKoreanTextTokenizer extends Tokenizer implements KoreanTokenPrepareable {

Expand Down

0 comments on commit ed99405

Please sign in to comment.