2019-07-22 22:53:30 +00:00
|
|
|
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 {
|
|
|
|
|
2020-06-22 22:28:04 +00:00
|
|
|
val BcryptVersion = "0.4"
|
2019-07-22 22:53:30 +00:00
|
|
|
val BetterMonadicForVersion = "0.3.1"
|
2021-05-10 07:13:55 +00:00
|
|
|
val BitpeaceVersion = "0.8.0"
|
2021-05-10 16:35:54 +00:00
|
|
|
val CalevVersion = "0.4.3"
|
2021-04-02 02:09:24 +00:00
|
|
|
val CatsParseVersion = "0.3.2"
|
2020-06-22 22:28:04 +00:00
|
|
|
val CirceVersion = "0.13.0"
|
2020-08-03 21:58:41 +00:00
|
|
|
val ClipboardJsVersion = "2.0.6"
|
2021-05-07 04:15:03 +00:00
|
|
|
val DoobieVersion = "0.13.2"
|
2021-05-10 00:11:34 +00:00
|
|
|
val EmilVersion = "0.9.2"
|
2020-06-22 22:28:04 +00:00
|
|
|
val FlexmarkVersion = "0.62.2"
|
2021-05-13 19:01:50 +00:00
|
|
|
val FlywayVersion = "7.9.0"
|
2021-05-14 06:27:14 +00:00
|
|
|
val Fs2Version = "2.5.6"
|
2020-06-22 22:28:04 +00:00
|
|
|
val H2Version = "1.4.200"
|
2021-04-07 04:25:39 +00:00
|
|
|
val Http4sVersion = "0.21.22"
|
2021-04-08 02:12:52 +00:00
|
|
|
val Icu4jVersion = "69.1"
|
2020-06-22 22:28:04 +00:00
|
|
|
val JsoupVersion = "1.13.1"
|
|
|
|
val KindProjectorVersion = "0.10.3"
|
2021-05-10 12:53:05 +00:00
|
|
|
val KittensVersion = "2.3.1"
|
2020-11-10 21:28:34 +00:00
|
|
|
val LevigoJbig2Version = "2.0"
|
2020-10-30 11:15:01 +00:00
|
|
|
val Log4sVersion = "1.9.0"
|
2020-06-22 22:28:04 +00:00
|
|
|
val LogbackVersion = "1.2.3"
|
2021-05-12 22:16:07 +00:00
|
|
|
val MariaDbVersion = "2.7.3"
|
2021-02-21 19:29:03 +00:00
|
|
|
val MiniTestVersion = "2.9.3"
|
2021-05-13 19:01:54 +00:00
|
|
|
val MUnitVersion = "0.7.26"
|
2021-02-01 11:22:14 +00:00
|
|
|
val OrganizeImportsVersion = "0.5.0"
|
2021-03-19 03:11:31 +00:00
|
|
|
val PdfboxVersion = "2.0.23"
|
2020-06-22 22:28:04 +00:00
|
|
|
val PoiVersion = "4.1.2"
|
2021-04-22 14:28:31 +00:00
|
|
|
val PostgresVersion = "42.2.20"
|
2021-04-18 04:15:47 +00:00
|
|
|
val PureConfigVersion = "0.15.0"
|
2021-04-22 04:19:30 +00:00
|
|
|
val ScalaJavaTimeVersion = "2.2.2"
|
2020-06-22 22:28:04 +00:00
|
|
|
val Slf4jVersion = "1.7.30"
|
2021-05-12 18:16:56 +00:00
|
|
|
val StanfordNlpVersion = "4.2.1"
|
2021-03-29 17:13:19 +00:00
|
|
|
val TikaVersion = "1.26"
|
2021-05-10 16:36:05 +00:00
|
|
|
val YamuscaVersion = "0.8.1"
|
2021-04-30 16:14:38 +00:00
|
|
|
val SwaggerUIVersion = "3.48.0"
|
2021-04-26 07:40:24 +00:00
|
|
|
val TwelveMonkeysVersion = "3.7.0"
|
2020-06-22 22:28:04 +00:00
|
|
|
val JQueryVersion = "3.5.1"
|
|
|
|
val ViewerJSVersion = "0.5.8"
|
2020-02-11 21:46:23 +00:00
|
|
|
|
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 =
|
|
|
|
"org.scala-js" %% "scalajs-stubs" % "1.0.0" % "provided"
|
|
|
|
|
2021-02-23 00:24:24 +00:00
|
|
|
val catsJS = Def.setting("org.typelevel" %%% "cats-core" % "2.4.2")
|
|
|
|
|
2021-02-28 15:11:25 +00:00
|
|
|
val scalaJavaTime =
|
|
|
|
Def.setting("io.github.cquiroz" %%% "scala-java-time" % ScalaJavaTimeVersion)
|
|
|
|
|
2020-12-05 01:59:57 +00:00
|
|
|
val kittens = Seq(
|
|
|
|
"org.typelevel" %% "kittens" % KittensVersion
|
|
|
|
)
|
|
|
|
|
2020-03-08 14:26:56 +00:00
|
|
|
val calevCore = Seq(
|
2020-04-17 22:50:46 +00:00
|
|
|
"com.github.eikek" %% "calev-core" % CalevVersion
|
2020-03-08 14:26:56 +00:00
|
|
|
)
|
|
|
|
val calevFs2 = Seq(
|
2020-03-08 01:48:47 +00:00
|
|
|
"com.github.eikek" %% "calev-fs2" % CalevVersion
|
|
|
|
)
|
2020-04-17 22:50:46 +00:00
|
|
|
val calevCirce = Seq(
|
|
|
|
"com.github.eikek" %% "calev-circe" % CalevVersion
|
|
|
|
)
|
2020-03-08 01:48:47 +00:00
|
|
|
|
2020-02-16 20:37:26 +00:00
|
|
|
val jclOverSlf4j = Seq(
|
|
|
|
"org.slf4j" % "jcl-over-slf4j" % Slf4jVersion
|
|
|
|
)
|
|
|
|
val julOverSlf4j = Seq(
|
|
|
|
"org.slf4j" % "jul-to-slf4j" % Slf4jVersion
|
|
|
|
)
|
|
|
|
|
2020-02-11 21:46:23 +00:00
|
|
|
val poi = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"org.apache.poi" % "poi" % PoiVersion,
|
|
|
|
"org.apache.poi" % "poi-ooxml" % PoiVersion,
|
|
|
|
"org.apache.poi" % "poi-scratchpad" % PoiVersion
|
|
|
|
).map(
|
|
|
|
_.excludeAll(
|
|
|
|
ExclusionRule("commons-logging")
|
|
|
|
)
|
|
|
|
) ++ jclOverSlf4j
|
2020-02-11 21:46:23 +00:00
|
|
|
|
2020-02-10 23:33:52 +00:00
|
|
|
// https://github.com/vsch/flexmark-java
|
|
|
|
// BSD 2-Clause
|
|
|
|
val flexmark = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"com.vladsch.flexmark" % "flexmark" % FlexmarkVersion,
|
|
|
|
"com.vladsch.flexmark" % "flexmark-ext-tables" % FlexmarkVersion,
|
2020-02-10 23:33:52 +00:00
|
|
|
"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-10 23:33:52 +00:00
|
|
|
|
2020-02-18 20:32:21 +00:00
|
|
|
val twelvemonkeys = Seq(
|
|
|
|
"com.twelvemonkeys.imageio" % "imageio-jpeg" % TwelveMonkeysVersion,
|
|
|
|
"com.twelvemonkeys.imageio" % "imageio-tiff" % TwelveMonkeysVersion
|
|
|
|
)
|
2020-02-15 15:40:50 +00:00
|
|
|
|
2020-11-10 21:28:34 +00:00
|
|
|
val levigoJbig2 = Seq(
|
|
|
|
"com.levigo.jbig2" % "levigo-jbig2-imageio" % LevigoJbig2Version
|
|
|
|
)
|
|
|
|
|
2020-02-10 23:33:52 +00:00
|
|
|
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")
|
|
|
|
)
|
2020-11-10 21:28:34 +00:00
|
|
|
) ++ jclOverSlf4j ++ levigoJbig2
|
2019-07-17 20:03:10 +00:00
|
|
|
|
2020-04-19 18:31:28 +00:00
|
|
|
val emilCommon = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"com.github.eikek" %% "emil-common" % EmilVersion
|
2020-04-19 18:31:28 +00:00
|
|
|
)
|
2020-01-04 23:12:23 +00:00
|
|
|
val emil = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"com.github.eikek" %% "emil-common" % EmilVersion,
|
|
|
|
"com.github.eikek" %% "emil-javamail" % EmilVersion
|
2020-01-04 23:12:23 +00:00
|
|
|
)
|
2020-03-24 22:03:18 +00:00
|
|
|
val emilDoobie = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"com.github.eikek" %% "emil-doobie" % EmilVersion
|
2020-03-24 22:03:18 +00:00
|
|
|
)
|
|
|
|
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")
|
|
|
|
)
|
2020-03-24 22:03:18 +00:00
|
|
|
)
|
2020-04-07 20:05:24 +00:00
|
|
|
val emilMarkdown = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"com.github.eikek" %% "emil-markdown" % EmilVersion
|
2020-04-07 20:05:24 +00:00
|
|
|
)
|
|
|
|
val emilJsoup = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
"com.github.eikek" %% "emil-jsoup" % EmilVersion
|
2020-04-07 20:05:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
val jsoup = Seq(
|
|
|
|
"org.jsoup" % "jsoup" % JsoupVersion
|
|
|
|
)
|
2020-01-04 23:12:23 +00:00
|
|
|
|
2019-07-22 22:53:30 +00:00
|
|
|
val stanfordNlpCore = Seq(
|
2020-06-22 22:28:04 +00:00
|
|
|
("edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion).excludeAll(
|
2019-07-22 22:53:30 +00:00
|
|
|
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"),
|
2020-04-07 20:17:02 +00:00
|
|
|
ExclusionRule("javax.activation"),
|
2019-07-22 22:53:30 +00:00
|
|
|
ExclusionRule("de.jollyday", "jollyday"),
|
|
|
|
ExclusionRule("com.apple", "AppleJavaExtensions"),
|
|
|
|
ExclusionRule("org.glassfish", "javax.json")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
val stanfordNlpModels = Seq(
|
2020-04-21 21:33:15 +00:00
|
|
|
("edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion)
|
|
|
|
.classifier("models"),
|
2020-06-22 22:28:04 +00:00
|
|
|
("edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion)
|
|
|
|
.classifier("models-german"),
|
2020-04-21 21:33:15 +00:00
|
|
|
("edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion)
|
|
|
|
.classifier("models-french"),
|
|
|
|
("edu.stanford.nlp" % "stanford-corenlp" % StanfordNlpVersion)
|
|
|
|
.classifier(
|
|
|
|
"models-english"
|
|
|
|
)
|
2019-07-22 22:53:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
val tika = Seq(
|
|
|
|
"org.apache.tika" % "tika-core" % TikaVersion
|
|
|
|
)
|
2020-02-16 20:37:26 +00:00
|
|
|
val commonsIO = Seq(
|
2020-09-10 07:48:54 +00:00
|
|
|
"commons-io" % "commons-io" % "2.8.0"
|
2020-02-16 20:37:26 +00:00
|
|
|
)
|
|
|
|
val tikaParser = Seq(
|
|
|
|
"org.apache.tika" % "tika-parsers" % TikaVersion
|
|
|
|
)
|
2019-07-22 22:53:30 +00:00
|
|
|
|
|
|
|
val bcrypt = Seq(
|
|
|
|
"org.mindrot" % "jbcrypt" % BcryptVersion
|
|
|
|
)
|
2019-07-17 20:03:10 +00:00
|
|
|
|
|
|
|
val fs2 = Seq(
|
2019-07-22 22:53:30 +00:00
|
|
|
"co.fs2" %% "fs2-core" % Fs2Version,
|
2020-06-22 22:28:04 +00:00
|
|
|
"co.fs2" %% "fs2-io" % Fs2Version
|
2019-07-17 20:03:10 +00:00
|
|
|
)
|
|
|
|
|
2019-07-22 22:53:30 +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
|
|
|
|
)
|
|
|
|
|
2019-07-17 20:03:10 +00:00
|
|
|
val circe = Seq(
|
|
|
|
"io.circe" %% "circe-generic" % CirceVersion,
|
2020-06-22 22:28:04 +00:00
|
|
|
"io.circe" %% "circe-parser" % CirceVersion
|
2019-07-17 20:03:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// https://github.com/Log4s/log4s;ASL 2.0
|
|
|
|
val loggingApi = Seq(
|
|
|
|
"org.log4s" %% "log4s" % Log4sVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
val logging = Seq(
|
2019-07-22 22:53:30 +00:00
|
|
|
"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(
|
|
|
|
"org.mariadb.jdbc" % "mariadb-java-client" % MariaDbVersion //flyway doesn't work with newer mariadb
|
|
|
|
)
|
|
|
|
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(
|
2020-06-22 22:28:04 +00:00
|
|
|
"org.tpolecat" %% "doobie-core" % DoobieVersion,
|
2019-07-17 20:03:10 +00:00
|
|
|
"org.tpolecat" %% "doobie-hikari" % DoobieVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
val bitpeace = Seq(
|
|
|
|
"com.github.eikek" %% "bitpeace-core" % BitpeaceVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
// https://github.com/flyway/flyway
|
|
|
|
// ASL 2.0
|
|
|
|
val flyway = Seq(
|
|
|
|
"org.flywaydb" % "flyway-core" % FlywayVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
val yamusca = Seq(
|
|
|
|
"com.github.eikek" %% "yamusca-core" % YamuscaVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
val miniTest = Seq(
|
|
|
|
// https://github.com/monix/minitest
|
|
|
|
// Apache 2.0
|
2020-06-22 22:28:04 +00:00
|
|
|
"io.monix" %% "minitest" % MiniTestVersion,
|
2019-07-17 20:03:10 +00:00
|
|
|
"io.monix" %% "minitest-laws" % MiniTestVersion
|
|
|
|
).map(_ % Test)
|
|
|
|
|
2021-02-28 20:15:21 +00:00
|
|
|
val munit = Seq(
|
2021-04-10 14:31:58 +00:00
|
|
|
"org.scalameta" %% "munit" % MUnitVersion,
|
2021-02-28 20:15:21 +00:00
|
|
|
"org.scalameta" %% "munit-scalacheck" % MUnitVersion
|
|
|
|
)
|
|
|
|
|
2020-06-22 22:28:04 +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-04-10 14:31:58 +00:00
|
|
|
"org.webjars" % "swagger-ui" % SwaggerUIVersion,
|
|
|
|
"org.webjars" % "viewerjs" % ViewerJSVersion,
|
|
|
|
"org.webjars" % "clipboard.js" % ClipboardJsVersion
|
2020-02-08 16:51:47 +00:00
|
|
|
)
|
2019-07-17 20:03:10 +00:00
|
|
|
|
2020-03-23 21:43:15 +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
|
|
|
}
|