build(io): Fen Parser using ParserCombinators
Build & Test (NowChessSystems) TeamCity build finished

Added Fen ParserCombinators dependency
This commit is contained in:
LQ63
2026-04-07 12:18:21 +02:00
parent 47032378e2
commit 955af7ec2c
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -32,7 +32,8 @@ val versions = mapOf(
"SCOVERAGE" to "2.1.1",
"SCALAFX" to "21.0.0-R32",
"JAVAFX" to "21.0.1",
"JUNIT_BOM" to "5.13.4"
"JUNIT_BOM" to "5.13.4",
"SCALA_PARSER_COMBINATORS" to "2.4.0"
)
extra["VERSIONS"] = versions
+2
View File
@@ -38,6 +38,8 @@ dependencies {
}
}
implementation("org.scala-lang.modules:scala-parser-combinators_3:${versions["SCALA_PARSER_COMBINATORS"]!!}")
implementation(project(":modules:api"))
implementation(project(":modules:rule"))