docspell/project/Dependencies.scala

350 lines
9.5 KiB
Scala
Raw Normal View History

package docspell.build
2019-07-17 20:03:10 +00:00
import sbt._
2021-02-21 11:04:48 +00:00
import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._
2019-07-17 20:03:10 +00:00
object Dependencies {
2021-09-22 15:23:24 +00:00
val BcryptVersion = "0.4"
val BetterMonadicForVersion = "0.3.1"
2022-02-15 03:23:33 +00:00
val BinnyVersion = "0.3.0"
val CalevVersion = "0.6.1"
val CatsVersion = "2.7.0"
val CatsEffectVersion = "3.3.5"
2021-11-20 05:17:44 +00:00
val CatsParseVersion = "0.3.6"
2021-09-22 15:23:24 +00:00
val CirceVersion = "0.14.1"
val ClipboardJsVersion = "2.0.6"
val DoobieVersion = "1.0.0-RC2"
val EmilVersion = "0.11.1"
2022-02-09 01:12:15 +00:00
val FlexmarkVersion = "0.64.0"
val FlywayVersion = "8.5.0"
2022-02-19 17:14:55 +00:00
val Fs2Version = "3.2.5"
2021-09-22 15:23:24 +00:00
val Fs2CronVersion = "0.7.1"
val H2Version = "1.4.200"
val Http4sVersion = "0.23.10"
2021-10-28 10:11:59 +00:00
val Icu4jVersion = "70.1"
2021-11-20 07:15:41 +00:00
val JavaOtpVersion = "0.3.1"
2021-09-30 10:19:11 +00:00
val JsoupVersion = "1.14.3"
2022-02-17 17:16:14 +00:00
val JwtScalaVersion = "9.0.4"
2021-09-22 15:23:24 +00:00
val KindProjectorVersion = "0.10.3"
val KittensVersion = "2.3.2"
val LevigoJbig2Version = "2.0"
val Log4sVersion = "1.10.0"
2021-12-23 15:56:33 +00:00
val LogbackVersion = "1.2.10"
2022-01-25 23:23:51 +00:00
val MariaDbVersion = "3.0.3"
2021-09-22 15:23:24 +00:00
val MUnitVersion = "0.7.29"
2021-12-05 21:18:03 +00:00
val MUnitCatsEffectVersion = "1.0.7"
2021-11-05 05:21:13 +00:00
val OrganizeImportsVersion = "0.6.0"
2021-12-18 05:12:35 +00:00
val PdfboxVersion = "2.0.25"
val PdfjsViewerVersion = "2.9.359"
2021-09-22 15:23:24 +00:00
val PoiVersion = "4.1.2"
2022-02-15 23:29:58 +00:00
val PostgresVersion = "42.3.3"
2021-11-22 03:16:33 +00:00
val PureConfigVersion = "0.17.1"
2021-09-22 15:23:24 +00:00
val ScalaJavaTimeVersion = "2.3.0"
2021-11-30 15:32:23 +00:00
val ScodecBitsVersion = "1.1.30"
2022-02-21 19:21:12 +00:00
val ScribeVersion = "3.7.1"
val Slf4jVersion = "1.7.36"
2022-02-19 13:00:47 +00:00
val SourcecodeVersion = "0.2.8"
2022-01-21 09:22:42 +00:00
val StanfordNlpVersion = "4.4.0"
2022-02-07 19:39:19 +00:00
val TikaVersion = "2.3.0"
2021-12-02 00:08:30 +00:00
val YamuscaVersion = "0.8.2"
2022-02-05 23:26:38 +00:00
val SwaggerUIVersion = "4.5.0"
val TestContainerVersion = "0.40.2"
val TwelveMonkeysVersion = "3.8.1"
2021-09-22 15:23:24 +00:00
val JQueryVersion = "3.5.1"
val scribe = Seq(
"com.outr" %% "scribe" % ScribeVersion,
"com.outr" %% "scribe-slf4j" % ScribeVersion
)
2022-02-19 13:00:47 +00:00
val sourcecode = Seq(
"com.lihaoyi" %% "sourcecode" % SourcecodeVersion
)
val jwtScala = Seq(
"com.github.jwt-scala" %% "jwt-circe" % JwtScalaVersion
)
val scodecBits = Seq(
"org.scodec" %% "scodec-bits" % ScodecBitsVersion
)
val javaOtp = Seq(
"com.eatthepath" % "java-otp" % JavaOtpVersion
)
val testContainer = Seq(
2021-09-22 15:23:24 +00:00
"com.dimafeng" %% "testcontainers-scala-munit" % TestContainerVersion,
"com.dimafeng" %% "testcontainers-scala-mariadb" % TestContainerVersion,
"com.dimafeng" %% "testcontainers-scala-postgresql" % TestContainerVersion
)
val cats = Seq(
"org.typelevel" %% "cats-core" % CatsVersion
)
val catsEffect = Seq(
"org.typelevel" %% "cats-effect" % CatsEffectVersion
)
2021-02-21 11:04:48 +00:00
val catsParse = Seq(
"org.typelevel" %% "cats-parse" % CatsParseVersion
)
val catsParseJS =
Def.setting("org.typelevel" %%% "cats-parse" % CatsParseVersion)
val scalaJsStubs =
2021-08-09 20:36:16 +00:00
"org.scala-js" %% "scalajs-stubs" % "1.1.0" % "provided"
2021-02-21 11:04:48 +00:00
2021-02-23 00:24:24 +00:00
val catsJS = Def.setting("org.typelevel" %%% "cats-core" % "2.4.2")
val scalaJavaTime =
Def.setting("io.github.cquiroz" %%% "scala-java-time" % ScalaJavaTimeVersion)
val kittens = Seq(
"org.typelevel" %% "kittens" % KittensVersion
)
val calevCore = Seq(
2020-04-17 22:50:46 +00:00
"com.github.eikek" %% "calev-core" % CalevVersion
)
val calevFs2 = Seq(
2021-06-21 19:33:54 +00:00
"eu.timepit" %% "fs2-cron-calev" % Fs2CronVersion
)
2020-04-17 22:50:46 +00:00
val calevCirce = Seq(
"com.github.eikek" %% "calev-circe" % CalevVersion
)
2020-02-16 20:37:26 +00:00
val jclOverSlf4j = Seq(
"org.slf4j" % "jcl-over-slf4j" % Slf4jVersion
)
2022-02-19 21:01:49 +00:00
// val julOverSlf4j = Seq(
// "org.slf4j" % "jul-to-slf4j" % Slf4jVersion
// )
2020-02-16 20:37:26 +00:00
val poi = Seq(
2021-09-22 15:23:24 +00:00
"org.apache.poi" % "poi" % PoiVersion,
"org.apache.poi" % "poi-ooxml" % PoiVersion,
2020-06-22 22:28:04 +00:00
"org.apache.poi" % "poi-scratchpad" % PoiVersion
).map(
_.excludeAll(
ExclusionRule("commons-logging")
)
) ++ jclOverSlf4j
// https://github.com/vsch/flexmark-java
// BSD 2-Clause
val flexmark = Seq(
2021-09-22 15:23:24 +00:00
"com.vladsch.flexmark" % "flexmark" % FlexmarkVersion,
"com.vladsch.flexmark" % "flexmark-ext-tables" % FlexmarkVersion,
"com.vladsch.flexmark" % "flexmark-ext-gfm-strikethrough" % FlexmarkVersion
2020-06-22 22:28:04 +00:00
).map(
_.excludeAll(
ExclusionRule("junit"),
ExclusionRule("hamcrest-core")
)
)
2020-02-18 20:32:21 +00:00
val twelvemonkeys = Seq(
"com.twelvemonkeys.imageio" % "imageio-jpeg" % TwelveMonkeysVersion,
"com.twelvemonkeys.imageio" % "imageio-tiff" % TwelveMonkeysVersion
)
val levigoJbig2 = Seq(
"com.levigo.jbig2" % "levigo-jbig2-imageio" % LevigoJbig2Version
)
val pdfbox = Seq(
2020-06-22 22:28:04 +00:00
("org.apache.pdfbox" % "pdfbox" % PdfboxVersion).excludeAll(
2020-02-16 20:37:26 +00:00
ExclusionRule("org.bouncycastle"),
ExclusionRule("commons-logging")
)
) ++ jclOverSlf4j ++ levigoJbig2
2019-07-17 20:03:10 +00:00
val emilCommon = Seq(
2020-06-22 22:28:04 +00:00
"com.github.eikek" %% "emil-common" % EmilVersion
)
2020-01-04 23:12:23 +00:00
val emil = Seq(
2021-09-22 15:23:24 +00:00
"com.github.eikek" %% "emil-common" % EmilVersion,
2020-06-22 22:28:04 +00:00
"com.github.eikek" %% "emil-javamail" % EmilVersion
2020-01-04 23:12:23 +00:00
)
val emilDoobie = Seq(
2020-06-22 22:28:04 +00:00
"com.github.eikek" %% "emil-doobie" % EmilVersion
)
val emilTnef = Seq(
2021-01-24 22:24:33 +00:00
("com.github.eikek" %% "emil-tnef" % EmilVersion).excludeAll(
2021-01-24 19:06:53 +00:00
ExclusionRule("org.apache.poi")
)
)
val emilMarkdown = Seq(
2020-06-22 22:28:04 +00:00
"com.github.eikek" %% "emil-markdown" % EmilVersion
)
val emilJsoup = Seq(
2020-06-22 22:28:04 +00:00
"com.github.eikek" %% "emil-jsoup" % EmilVersion
)
val jsoup = Seq(
"org.jsoup" % "jsoup" % JsoupVersion
)
2020-01-04 23:12:23 +00:00
val stanfordNlpCore = Seq(
2020-06-22 22:28:04 +00:00
("edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion).excludeAll(
ExclusionRule("com.io7m.xom", "xom"),
ExclusionRule("javax.servlet", "javax.servlet-api"),
ExclusionRule("org.apache.lucene", "lucene-queryparser"),
ExclusionRule("org.apache.lucene", "lucene-queries"),
ExclusionRule("org.apache.lucene", "lucene-analyzers-common"),
ExclusionRule("org.apache.lucene", "lucene-core"),
ExclusionRule("com.sun.xml.bind", "jaxb-impl"),
ExclusionRule("com.sun.xml.bind", "jaxb-core"),
ExclusionRule("javax.xml.bind", "jaxb-api"),
ExclusionRule("javax.activation"),
ExclusionRule("de.jollyday", "jollyday"),
ExclusionRule("com.apple", "AppleJavaExtensions"),
ExclusionRule("org.glassfish", "javax.json")
)
)
val stanfordNlpModels = {
val artifact = "edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion
Seq(
artifact.classifier("models"),
artifact.classifier("models-german"),
artifact.classifier("models-french"),
artifact.classifier("models-english"),
artifact.classifier("models-spanish")
)
}
val tika = Seq(
"org.apache.tika" % "tika-core" % TikaVersion
)
2020-02-16 20:37:26 +00:00
val commonsIO = Seq(
2021-07-13 14:22:23 +00:00
"commons-io" % "commons-io" % "2.11.0"
2020-02-16 20:37:26 +00:00
)
val tikaParser = Seq(
"org.apache.tika" % "tika-parsers" % TikaVersion
)
val bcrypt = Seq(
"org.mindrot" % "jbcrypt" % BcryptVersion
)
2019-07-17 20:03:10 +00:00
2022-02-19 13:00:47 +00:00
val fs2Core = Seq(
"co.fs2" %% "fs2-core" % Fs2Version
)
val fs2Io = Seq(
2021-09-22 15:23:24 +00:00
"co.fs2" %% "fs2-io" % Fs2Version
2019-07-17 20:03:10 +00:00
)
2022-02-19 13:00:47 +00:00
val fs2 = fs2Core ++ fs2Io
2019-07-17 20:03:10 +00:00
val http4sClient = Seq(
"org.http4s" %% "http4s-blaze-client" % Http4sVersion
)
2019-07-17 20:03:10 +00:00
2020-06-18 22:43:35 +00:00
val http4sCirce = Seq(
"org.http4s" %% "http4s-circe" % Http4sVersion
)
val http4sDsl = Seq(
"org.http4s" %% "http4s-dsl" % Http4sVersion
)
val http4sServer = Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion
)
val circeCore = Seq(
"io.circe" %% "circe-core" % CirceVersion
)
val circeParser = Seq(
2021-09-22 15:23:24 +00:00
"io.circe" %% "circe-parser" % CirceVersion
2019-07-17 20:03:10 +00:00
)
val circe =
circeCore ++ circeParser ++ Seq(
"io.circe" %% "circe-generic" % CirceVersion
)
val circeGenericExtra = Seq(
"io.circe" %% "circe-generic-extras" % CirceVersion
)
2019-07-17 20:03:10 +00:00
2022-02-19 21:01:49 +00:00
// // https://github.com/Log4s/log4s;ASL 2.0
// val loggingApi = Seq(
// "org.log4s" %% "log4s" % Log4sVersion
// )
2019-07-17 20:03:10 +00:00
2022-02-19 21:01:49 +00:00
// val logging = Seq(
// "ch.qos.logback" % "logback-classic" % LogbackVersion
// )
2019-07-17 20:03:10 +00:00
// https://github.com/melrief/pureconfig
// MPL 2.0
val pureconfig = Seq(
"com.github.pureconfig" %% "pureconfig" % PureConfigVersion
)
// https://github.com/h2database/h2database
// MPL 2.0 or EPL 1.0
val h2 = Seq(
"com.h2database" % "h2" % H2Version
)
val mariadb = Seq(
2021-09-12 17:28:23 +00:00
"org.mariadb.jdbc" % "mariadb-java-client" % MariaDbVersion
2019-07-17 20:03:10 +00:00
)
val postgres = Seq(
"org.postgresql" % "postgresql" % PostgresVersion
)
2020-05-05 18:39:11 +00:00
val databases = h2 ++ mariadb ++ postgres
2019-07-17 20:03:10 +00:00
// https://github.com/tpolecat/doobie
// MIT
val doobie = Seq(
2021-09-22 15:23:24 +00:00
"org.tpolecat" %% "doobie-core" % DoobieVersion,
2019-07-17 20:03:10 +00:00
"org.tpolecat" %% "doobie-hikari" % DoobieVersion
)
val binny = Seq(
2021-09-22 15:23:24 +00:00
"com.github.eikek" %% "binny-core" % BinnyVersion,
"com.github.eikek" %% "binny-jdbc" % BinnyVersion,
"com.github.eikek" %% "binny-minio" % BinnyVersion
2019-07-17 20:03:10 +00:00
)
// https://github.com/flyway/flyway
// ASL 2.0
val flyway = Seq(
2021-12-11 21:00:30 +00:00
"org.flywaydb" % "flyway-core" % FlywayVersion,
"org.flywaydb" % "flyway-mysql" % FlywayVersion
2019-07-17 20:03:10 +00:00
)
val yamusca = Seq(
"com.github.eikek" %% "yamusca-core" % YamuscaVersion
)
val yamuscaCirce = Seq(
"com.github.eikek" %% "yamusca-circe" % YamuscaVersion
)
2019-07-17 20:03:10 +00:00
2021-02-28 20:15:21 +00:00
val munit = Seq(
2021-09-22 15:23:24 +00:00
"org.scalameta" %% "munit" % MUnitVersion,
"org.scalameta" %% "munit-scalacheck" % MUnitVersion,
"org.typelevel" %% "munit-cats-effect-3" % MUnitCatsEffectVersion
2021-02-28 20:15:21 +00:00
)
2021-08-19 06:50:30 +00:00
val kindProjectorPlugin = "org.typelevel" %% "kind-projector" % KindProjectorVersion
val betterMonadicFor = "com.olegpy" %% "better-monadic-for" % BetterMonadicForVersion
2019-07-17 20:03:10 +00:00
val webjars = Seq(
2021-09-22 15:23:24 +00:00
"org.webjars" % "swagger-ui" % SwaggerUIVersion,
"org.webjars" % "clipboard.js" % ClipboardJsVersion,
"org.webjars.npm" % "pdfjs-dist-viewer-min" % PdfjsViewerVersion
)
2019-07-17 20:03:10 +00:00
val icu4j = Seq(
"com.ibm.icu" % "icu4j" % Icu4jVersion
)
2020-06-28 18:47:19 +00:00
val organizeImports = Seq(
"com.github.liancheng" %% "organize-imports" % OrganizeImportsVersion
)
2019-07-17 20:03:10 +00:00
}