From b08d0d6a4bf9cd64c0720ee800b463f922737966 Mon Sep 17 00:00:00 2001 From: frantuma Date: Sat, 7 Dec 2019 13:59:19 +0100 Subject: [PATCH] update swagger-core and jackson versions --- README.md | 2 +- build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b3245ef..3996b70 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This project is compatible with [swagger-core](https://github.com/swagger-api/sw To enable the swagger-scala-module, include the appropriate version in your project: ``` - "io.swagger" %% "swagger-scala-module" % "1.0.3" + "io.swagger" %% "swagger-scala-module" % "1.0.6-SNAPSHOT" ``` Which will include the proper cross-publish version of swagger-scala-module. diff --git a/build.sbt b/build.sbt index 876f9e8..ae240fc 100644 --- a/build.sbt +++ b/build.sbt @@ -24,9 +24,9 @@ pomIncludeRepository := { x => false } libraryDependencies ++= Seq( "org.scala-lang" % "scala-reflect" % scalaVersion.value, - "io.swagger" % "swagger-core" % "1.5.22", + "io.swagger" % "swagger-core" % "1.5.24", "org.scalatest" %% "scalatest" % "3.0.8" % "test", - "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.9", + "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.10", "junit" % "junit" % "4.12" % "test" )