Update dependencies (#2358)

This commit is contained in:
kenji yoshida
2019-08-07 17:18:25 +09:00
committed by Naoki Takezoe
parent 9a41adcec8
commit 0405fccb69

View File

@@ -5,8 +5,8 @@ val Organization = "io.github.gitbucket"
val Name = "gitbucket"
val GitBucketVersion = "4.32.0"
val ScalatraVersion = "2.7.0-RC1"
val JettyVersion = "9.4.14.v20181114"
val JgitVersion = "5.2.0.201812061821-r"
val JettyVersion = "9.4.19.v20190610"
val JgitVersion = "5.4.0.201906121030-r"
lazy val root = (project in file("."))
.enablePlugins(SbtTwirl, ScalatraPlugin)
@@ -44,21 +44,21 @@ libraryDependencies ++= Seq(
"io.github.gitbucket" % "markedj" % "1.0.16",
"org.apache.commons" % "commons-compress" % "1.18",
"org.apache.commons" % "commons-email" % "1.5",
"org.apache.httpcomponents" % "httpclient" % "4.5.6",
"org.apache.httpcomponents" % "httpclient" % "4.5.9",
"org.apache.sshd" % "apache-sshd" % "2.1.0" exclude ("org.slf4j", "slf4j-jdk14") exclude ("org.apache.sshd", "sshd-mina") exclude ("org.apache.sshd", "sshd-netty"),
"org.apache.tika" % "tika-core" % "1.19.1",
"org.apache.tika" % "tika-core" % "1.22",
"com.github.takezoe" %% "blocking-slick-32" % "0.0.12",
"com.novell.ldap" % "jldap" % "2009-10-07",
"com.h2database" % "h2" % "1.4.197",
"org.mariadb.jdbc" % "mariadb-java-client" % "2.4.2",
"org.postgresql" % "postgresql" % "42.2.5",
"com.h2database" % "h2" % "1.4.199",
"org.mariadb.jdbc" % "mariadb-java-client" % "2.4.3",
"org.postgresql" % "postgresql" % "42.2.6",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.zaxxer" % "HikariCP" % "3.2.0",
"com.typesafe" % "config" % "1.3.3",
"com.zaxxer" % "HikariCP" % "3.3.1",
"com.typesafe" % "config" % "1.3.4",
"com.typesafe.akka" %% "akka-actor" % "2.5.23",
"fr.brouillard.oss.security.xhub" % "xhub4j-core" % "1.1.0",
"com.github.bkromhout" % "java-diff-utils" % "2.1.1",
"org.cache2k" % "cache2k-all" % "1.2.0.Final",
"org.cache2k" % "cache2k-all" % "1.2.2.Final",
"com.enragedginger" %% "akka-quartz-scheduler" % "1.8.1-akka-2.5.x" exclude ("com.mchange", "c3p0") exclude ("com.zaxxer", "HikariCP-java6"),
"net.coobird" % "thumbnailator" % "0.4.8",
"com.github.zafarkhaja" % "java-semver" % "0.9.0",
@@ -67,12 +67,12 @@ libraryDependencies ++= Seq(
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided",
"junit" % "junit" % "4.12" % "test",
"org.scalatra" %% "scalatra-scalatest" % ScalatraVersion % "test",
"org.mockito" % "mockito-core" % "2.23.4" % "test",
"org.mockito" % "mockito-core" % "3.0.0" % "test",
"com.dimafeng" %% "testcontainers-scala" % "0.29.0" % "test",
"org.testcontainers" % "mysql" % "1.11.4" % "test",
"org.testcontainers" % "postgresql" % "1.11.4" % "test",
"org.testcontainers" % "mysql" % "1.12.0" % "test",
"org.testcontainers" % "postgresql" % "1.12.0" % "test",
"net.i2p.crypto" % "eddsa" % "0.3.0",
"is.tagomor.woothee" % "woothee-java" % "1.8.0",
"is.tagomor.woothee" % "woothee-java" % "1.10.1",
"org.ec4j.core" % "ec4j-core" % "0.0.3"
)