Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit b9ab6b1

Browse files
committed
updated versions
1 parent 67c906a commit b9ab6b1

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

build.sbt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ import Defaults._
66

77
organization := "io.swagger"
88

9-
version := "1.0.2"
9+
version := "1.0.3"
1010

11+
// scala 2.12 requires jdk8. JDK8 cannot be used with 2.10 so crossbuilding won't work
1112
scalaVersion := "2.10.4"
1213

1314
crossScalaVersions := Seq("2.10.0", "2.10.1", "2.10.2", "2.10.3", "2.10.4", "2.10.6", "2.11.0", "2.11.1", "2.11.4", "2.11.7")
1415

16+
//scalaVersion := "2.12.0"
17+
18+
//crossScalaVersions := Seq(/*"2.10.0", "2.10.1", "2.10.2", "2.10.3", "2.10.4", "2.10.6", "2.11.0", "2.11.1", "2.11.4", "2.11.7",*/ "2.12.0")
19+
1520
organizationHomepage in ThisBuild := Some(url("http://swagger.io"))
1621

1722
scalacOptions in ThisBuild ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked")
@@ -23,9 +28,9 @@ publishArtifact in Test := false
2328
pomIncludeRepository := { x => false }
2429

2530
libraryDependencies ++= Seq(
26-
"io.swagger" % "swagger-core" % "1.5.8",
27-
"org.scalatest" %% "scalatest" % "2.2.5" % "test",
28-
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.4.2",
31+
"io.swagger" % "swagger-core" % "1.5.12",
32+
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
33+
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.8.6",
2934
"junit" % "junit" % "4.12" % "test"
3035
)
3136

0 commit comments

Comments
 (0)