Skip to content

Commit

Permalink
Merge pull request #2 from maximn/upgrade_dependenceis
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
boazca authored Jan 2, 2022
2 parents 520591a + 1eb1e50 commit f1b3ca1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.32",
"org.slf4j" % "slf4j-simple" % "1.7.32",
"com.itextpdf" % "itextpdf" % "5.5.13.2" ,
"org.bouncycastle" % "bcprov-jdk15on" % "1.47" ,
"org.bouncycastle" % "bcmail-jdk15on" % "1.47" ,
"org.apache.poi" % "poi" % "3.15" ,
"org.bouncycastle" % "bcprov-jdk15on" % "1.69" ,
"org.bouncycastle" % "bcmail-jdk15on" % "1.69" ,
"org.apache.poi" % "poi" % "5.0.0" ,

"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.0",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.1",

"net.sourceforge.htmlunit" % "htmlunit" % "2.53.0" ,
"net.sourceforge.htmlunit" % "htmlunit" % "2.56.0" ,

"org.specs2" %% "specs2-core" % "4.13.0" % "test" ,
"org.specs2" %% "specs2-junit" % "4.13.0" % "test" ,
"org.specs2" %% "specs2-matcher-extra" % "4.13.0" % "test" ,
"org.specs2" %% "specs2-mock" % "4.13.0" % "test" ,
"org.specs2" %% "specs2-scalacheck" % "4.13.0" % "test"
"org.specs2" %% "specs2-core" % "4.13.1" % "test" ,
"org.specs2" %% "specs2-junit" % "4.13.1" % "test" ,
"org.specs2" %% "specs2-matcher-extra" % "4.13.1" % "test" ,
"org.specs2" %% "specs2-mock" % "4.13.1" % "test" ,
"org.specs2" %% "specs2-scalacheck" % "4.13.1" % "test"
)

assemblyMergeStrategy in assembly := {
assembly / assemblyMergeStrategy := {
case PathList("META-INF", _*) => MergeStrategy.discard
case _ => MergeStrategy.first
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.4.9
sbt.version=1.6.1

0 comments on commit f1b3ca1

Please sign in to comment.