CatgirlIntelligenceAgency/third-party/rdrpostagger/build.gradle
Viktor Lofgren 186a02acfd Optimize RDRPosTagger to use integer comparisons instead of string comparisons.
Also reduce the cache-thrashing by deconstructing the tree's nodes into arrays.
2023-06-19 17:58:19 +02:00

18 lines
195 B
Groovy

plugins {
id 'java'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
dependencies {
implementation libs.trove
}
test {
useJUnitPlatform()
}