Skip to content

Commit

Permalink
v3.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
arysin committed Oct 19, 2024
1 parent 0f18122 commit 9719088
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {
implementation("ua.net.nlp:morfologik-ukrainian-lt:${morfologik_ukrainian_lt_version}")
}

implementation group: 'ua.net.nlp', name: 'nlp_uk-stats', version: '3.3.7'
implementation group: 'ua.net.nlp', name: 'nlp_uk-stats', version: statsVersion

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.+'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.+'
Expand Down Expand Up @@ -169,14 +169,10 @@ task copyRuntimeLibs(type: Copy) {
application {
mainClass = "ua.net.nlp.tools.tag.TagTextCore"

// def args = ['-Dgroovy.grape.enable=false', '-i', '../media_main/td.txt', '-o', 'td.xml']
// applicationDefaultJvmArgs = ['-Dgroovy.grape.enable=false']
// applicationDefaultJvmArgs = ['-Dgroovy.grape.enable=false', '-i', '../../media_main/td.txt', '-o', 'td.xml', "-XX:+FlightRecorder", "-XX:StartFlightRecording=disk=true,dumponexit=true,filename=recording.jfr"]
applicationDefaultJvmArgs = ['-Dgroovy.grape.enable=false', "-XX:+FlightRecorder", "-XX:StartFlightRecording=disk=true,dumponexit=true,filename=recording.jfr"]
//applicationDefaultJvmArgs = args
}

//compileJava.enabled = false

jar {

Expand All @@ -196,11 +192,12 @@ jar {
exclude("ua/net/nlp/tools/ExtractText.class")
exclude("ua/net/nlp/tools/Inflect.class")
exclude("ua/net/nlp/tools/StressText.class")
exclude("ua/net/nlp/tools/stats/*")
}

task statsJar(type: Jar) {
setArchiveFileName "${statsJarName}.jar"
version=statsVersion
archiveVersion=statsVersion

from('src/main/resources') {
include '/ua/net/nlp/tools/stats/*.txt'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ ltDevVersion=6.5
morfologik_ukrainian_lt_version=6.5.3
groovyVersion=4.0.22
# nlp_uk version
version=3.3.7
statsVersion=3.3.7
version=3.3.8

0 comments on commit 9719088

Please sign in to comment.