Skip to content

Commit

Permalink
Drop Scala 2.11 and update dependencies (#7)
Browse files Browse the repository at this point in the history
* Drop Scala 2.11 and update dependencies

* Drop Scala 2.11 and update dependencies
  • Loading branch information
azolotko committed Jun 11, 2020
1 parent 74a04a2 commit 10d6d76
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ and add this to your dependencies:

## Changelog

### Changes in 8.1.0

- Drop Scala 2.11 support

### Changes in 8.0.3

- Add Scala 2.12 support
Expand Down
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
val dispatchV = "1.0.2"
val sprayV = "2.0.2"
val specs2V = "3.9.5"
val slf4jV = "1.7.25"
val dispatchV = "1.2.0"
val sprayV = "2.1.0"
val specs2V = "4.9.4"
val slf4jV = "1.7.30"

val slf4jApi = "org.slf4j" % "slf4j-api" % slf4jV
val slf4jSimple = "org.slf4j" % "slf4j-simple" % slf4jV
val dispatch = "org.dispatchhttp" %% "dispatch-core" % dispatchV
val scalax = "com.github.t3hnar" %% "scalax" % "3.4"
val scalax = "com.github.t3hnar" %% "scalax" % "3.8.1"
val sprayHttp = "io.spray" %% "spray-http" % sprayV
val sprayHttpX = "io.spray" %% "spray-httpx" % sprayV
val akka = "com.typesafe.akka" %% "akka-actor" % "2.5.27" % "provided"
val akka = "com.typesafe.akka" %% "akka-actor" % "2.5.31" % "provided"
val specs2 = "org.specs2" %% "specs2-core" % specs2V % "it,test"
val specs2Mock = "org.specs2" %% "specs2-mock" % specs2V % "test"
val scalaXml = "org.scala-lang.modules" %% "scala-xml" % "1.2.0"
val scalaParser = "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
val scalaXml = "org.scala-lang.modules" %% "scala-xml" % "1.3.0"
val scalaParser = "org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2"
val enumUtils = "com.thenewmotion" %% "enum-utils" % "0.2.1"
val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.13.5" % "test"
val specs2ScalaCheck = "org.specs2" %% "specs2-scalacheck" % specs2V % "test"
Expand Down Expand Up @@ -67,7 +67,7 @@ val ocppSpray = module("ocpp-spray")

enablePlugins(OssLibPlugin)

crossScalaVersions := Seq(tnm.ScalaVersion.prev, tnm.ScalaVersion.aged)
crossScalaVersions := Seq(tnm.ScalaVersion.prev)

scalaVersion := tnm.ScalaVersion.prev

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.7
sbt.version=1.3.12
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resolvers += "TNM" at "https://nexus.thenewmotion.com/content/groups/public"

addSbtPlugin("com.newmotion" % "sbt-build-seed" % "5.0.4")
addSbtPlugin("com.newmotion" % "sbt-build-seed" % "5.0.6")

addSbtPlugin("org.scalaxb" % "sbt-scalaxb" % "1.7.3")

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "8.0.6-SNAPSHOT"
version in ThisBuild := "8.1.0-SNAPSHOT"

0 comments on commit 10d6d76

Please sign in to comment.