project renamed to wson

This commit is contained in:
2021-01-13 08:47:02 +01:00
parent f96ab24ad7
commit 6422a91568
71 changed files with 462 additions and 494 deletions

18
antlr/build.sbt Normal file
View File

@@ -0,0 +1,18 @@
organization := (organization in LocalRootProject).value
name := "worth-antlr"
version := (version in LocalRootProject).value
resourceDirectory := (resourceDirectory in(LocalRootProject, Test)).value
antlr4Version in Antlr4 := Versions.antlr
antlr4PackageName in Antlr4 := Some("net.woggioni.worth.antlr")
skip in publish := true
libraryDependencies += "org.projectlombok" % "lombok" % Versions.lombok % Provided
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % Versions.jackson % Test
libraryDependencies += "org.tukaani" % "xz" % Versions.xz % Test
libraryDependencies += "org.antlr" % "antlr4" % Versions.antlr % Test
libraryDependencies += "org.antlr" % "antlr4-runtime" % Versions.antlr % Test
libraryDependencies += "net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test
libraryDependencies += "org.junit.jupiter" % "junit-jupiter-params" % JupiterKeys.junitJupiterVersion.value % Test
enablePlugins(JupiterPlugin)