upgrade deps

pull/6639/head
Thibault Duplessis 2020-05-16 08:29:21 -06:00
parent 8723e50fb8
commit 0c828bac7a
2 changed files with 19 additions and 19 deletions

View File

@ -30,7 +30,7 @@ final class Photographer(repo: ImageRepo, prefix: String) {
import com.sksamuel.scrimage._
Image.fromPath(path).cover(500, 500).output(path)
ImmutableImage.loader().fromPath(path).cover(500, 500).output(new nio.JpegWriter(), path)
}
private def sanitizeName(name: String) = {

View File

@ -12,24 +12,24 @@ object Dependencies {
val commons = Seq(sonatype, lilaMaven, sonatypeS)
}
val scalaz = "org.scalaz" %% "scalaz-core" % "7.2.30"
val scalalib = "com.github.ornicar" %% "scalalib" % "6.8"
val hasher = "com.roundeights" %% "hasher" % "1.2.1"
val jodaTime = "joda-time" % "joda-time" % "2.10.6"
val chess = "org.lichess" %% "scalachess" % "9.2.1"
val compression = "org.lichess" %% "compression" % "1.5"
val maxmind = "com.sanoma.cda" %% "maxmind-geoip2-scala" % "1.3.1-THIB"
val prismic = "io.prismic" %% "scala-kit" % "1.2.18-THIB213"
val scrimage = "com.sksamuel.scrimage" %% "scrimage-core" % "2.1.8-SNAPSHOT"
val scaffeine = "com.github.blemale" %% "scaffeine" % "4.0.0" % "compile"
val googleOAuth = "com.google.auth" % "google-auth-library-oauth2-http" % "0.20.0"
val scalaUri = "io.lemonlabs" %% "scala-uri" % "2.2.2"
val scalatags = "com.lihaoyi" %% "scalatags" % "0.8.5"
val lettuce = "io.lettuce" % "lettuce-core" % "5.3.0.RELEASE"
val epoll = "io.netty" % "netty-transport-native-epoll" % "4.1.44.Final" classifier "linux-x86_64"
val autoconfig = "io.methvin.play" %% "autoconfig-macros" % "0.3.2" % "provided"
val scalatest = "org.scalatest" %% "scalatest" % "3.1.0" % Test
val akkatestkit = "com.typesafe.akka" %% "akka-testkit" % "2.6.5" % Test
val scalaz = "org.scalaz" %% "scalaz-core" % "7.2.30"
val scalalib = "com.github.ornicar" %% "scalalib" % "6.8"
val hasher = "com.roundeights" %% "hasher" % "1.2.1"
val jodaTime = "joda-time" % "joda-time" % "2.10.6"
val chess = "org.lichess" %% "scalachess" % "9.2.2"
val compression = "org.lichess" %% "compression" % "1.5"
val maxmind = "com.sanoma.cda" %% "maxmind-geoip2-scala" % "1.3.1-THIB"
val prismic = "io.prismic" %% "scala-kit" % "1.2.18-THIB213"
val scrimage = "com.sksamuel.scrimage" % "scrimage-core" % "4.0.3"
val scaffeine = "com.github.blemale" %% "scaffeine" % "4.0.0" % "compile"
val googleOAuth = "com.google.auth" % "google-auth-library-oauth2-http" % "0.20.0"
val scalaUri = "io.lemonlabs" %% "scala-uri" % "2.2.2"
val scalatags = "com.lihaoyi" %% "scalatags" % "0.8.5"
val lettuce = "io.lettuce" % "lettuce-core" % "5.3.0.RELEASE"
val epoll = "io.netty" % "netty-transport-native-epoll" % "4.1.44.Final" classifier "linux-x86_64"
val autoconfig = "io.methvin.play" %% "autoconfig-macros" % "0.3.2" % "provided"
val scalatest = "org.scalatest" %% "scalatest" % "3.1.0" % Test
val akkatestkit = "com.typesafe.akka" %% "akka-testkit" % "2.6.5" % Test
object flexmark {
val version = "0.50.50"