Skip to content

Commit

Permalink
LT 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
arysin committed Mar 30, 2024
1 parent 3c7fe03 commit 9578f6b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
13 changes: 10 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,23 @@ dependencies {
implementation group: 'org.apache.groovy', name: 'groovy-xml', version: groovyVersion

implementation group: 'info.picocli', name: 'picocli', version: '4.7.0'
implementation group: 'ch.qos.logback', name:'logback-classic', version:'1.4.5'
implementation group: 'ch.qos.logback', name:'logback-classic', version:'1.4.+'

implementation("org.languagetool:language-uk:$ltUkVersion") {
implementation("org.languagetool:language-uk:$ltDevVersion") {
exclude module: 'hunspell'
exclude module: 'language-detector'
exclude module: 'lucene-core'
exclude group: 'org.apache.lucene'
exclude group: 'io.grpc'
}
implementation ("org.languagetool:language-ru:$ltVersion") {
implementation ("org.languagetool:language-ru:$ltBaseVersion") {
exclude module: 'hunspell'
exclude module: 'language-detector'
exclude module: 'lucene-core'
exclude group: 'org.apache.lucene'
exclude group: 'io.grpc'
}
implementation("org.languagetool:language-en:$ltBaseVersion") {
exclude module: 'hunspell'
exclude module: 'language-detector'
exclude module: 'lucene-core'
Expand Down
9 changes: 4 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
ltVersion=6.3
ltUkVersion=6.3
#ltUkVersion=6.2-SNAPSHOT
ltBaseVersion=6.4
ltDevVersion=6.4
#morfologik_ukrainian_lt_version=6.1.5
groovyVersion=4.0.15
groovyVersion=4.0.20
# nlp_uk version
version=3.2.3
version=3.3.2-SNAPSHOT
7 changes: 4 additions & 3 deletions src/main/groovy/ua/net/nlp/other/CleanText.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ package ua.net.nlp.other
// mark/rate or remove Russian paragraphs

@GrabConfig(systemClassLoader=true)
@Grab(group='org.languagetool', module='languagetool-core', version='6.3')
@Grab(group='org.languagetool', module='language-uk', version='6.3')
@Grab(group='org.languagetool', module='language-ru', version='6.3')
@Grab(group='org.languagetool', module='languagetool-core', version='6.4')
@Grab(group='org.languagetool', module='language-uk', version='6.4')
@Grab(group='org.languagetool', module='language-ru', version='6.4')
@Grab(group='org.languagetool', module='language-en', version='6.4')
@Grab(group='ch.qos.logback', module='logback-classic', version='1.4.+')
@Grab(group='info.picocli', module='picocli', version='4.6.+')

Expand Down
8 changes: 4 additions & 4 deletions src/main/groovy/ua/net/nlp/tools/TagText.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
package ua.net.nlp.tools

@GrabConfig(systemClassLoader=true)
@Grab(group='org.languagetool', module='languagetool-core', version='6.3')
@Grab(group='org.languagetool', module='language-uk', version='6.3')
@Grab(group='org.languagetool', module='language-ru', version='6.3')
//@Grab(group='ua.net.nlp', module='morfologik-ukrainian-lt', version='6.1.5')
@Grab(group='org.languagetool', module='languagetool-core', version='6.4')
@Grab(group='org.languagetool', module='language-uk', version='6.4')
@Grab(group='org.languagetool', module='language-ru', version='6.4')
//@Grab(group='ua.net.nlp', module='morfologik-ukrainian-lt', version='6.3.1-SNAPSHOT')
@Grab(group='ch.qos.logback', module='logback-classic', version='1.4.+')
@Grab(group='info.picocli', module='picocli', version='4.6.+')

Expand Down

0 comments on commit 9578f6b

Please sign in to comment.