Add example files into its own project

The text and convert module can use them in their tests.
This commit is contained in:
Eike Kettner
2020-02-11 22:46:23 +01:00
parent 2c0425433e
commit 569aae3038
12 changed files with 728 additions and 4 deletions

View File

@ -22,6 +22,7 @@ object Dependencies {
val MariaDbVersion = "2.5.4"
val MiniTestVersion = "2.7.0"
val PdfboxVersion = "2.0.18"
val PoiVersion = "4.1.1"
val PostgresVersion = "42.2.10"
val PureConfigVersion = "0.12.2"
val SqliteVersion = "3.30.1"
@ -32,7 +33,16 @@ object Dependencies {
val SemanticUIVersion = "2.4.1"
val JQueryVersion = "3.4.1"
val ViewerJSVersion = "0.5.8"
val poi = Seq(
"org.apache.poi" % "poi" % PoiVersion,
"org.apache.poi" % "poi-ooxml" % PoiVersion,
).map(_.excludeAll(
ExclusionRule("commons-logging"),
ExclusionRule("log4j")
))
// https://github.com/vsch/flexmark-java
// BSD 2-Clause
val flexmark = Seq(