blob: 186a5bcd1c8647cb38b12b1ae6054453d61abfdb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import sbt._
object Dependencies {
lazy val common = core ++ infoset ++ test
lazy val core = Seq(
"com.lihaoyi" %% "os-lib" % "0.10.0", // for writing/compiling C source files
"org.scala-lang.modules" %% "scala-xml" % "2.3.0",
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.4.0",
"com.ibm.icu" % "icu4j" % "75.1",
"xerces" % "xercesImpl" % "2.12.2",
"xml-resolver" % "xml-resolver" % "1.2",
"commons-io" % "commons-io" % "2.16.1",
"com.typesafe" % "config" % "1.4.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5"
)
lazy val slf4jAPI = Seq(
"org.slf4j" % "slf4j-api" % "2.0.13"
)
lazy val infoset = Seq(
"org.jdom" % "jdom2" % "2.0.6.1",
"com.fasterxml.woodstox" % "woodstox-core" % "6.6.2",
"com.fasterxml.jackson.core" % "jackson-core" % "2.16.1"
)
lazy val cli = Seq(
"org.jline" % "jline" % "3.25.1",
"org.rogach" %% "scallop" % "5.1.0",
"net.sf.expectit" % "expectit-core" % "0.9.0" % "test"
)
lazy val test = Seq(
"junit" % "junit" % "4.13.2" % "test",
"com.github.sbt" % "junit-interface" % "0.13.3" % "test",
"org.scalacheck" %% "scalacheck" % "1.18.0" % "test"
)
lazy val schematron = Seq(
"net.sf.saxon" % "Saxon-HE" % "12.4"
)
lazy val exi = Seq(
"com.siemens.ct.exi" % "exificient" % "1.0.7"
)
}