Skip to content

Commit 5e5a1be

Browse files
committed
Bump scala versions & dependencies
1 parent 50f13be commit 5e5a1be

File tree

6 files changed

+14
-17
lines changed

6 files changed

+14
-17
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import PgpKeys.{publishLocalSigned, publishSigned}
22
import com.typesafe.sbt.SbtGit.GitKeys._
33

44
organization := "software.purpledragon.xml"
5-
version := "0.0.2"
5+
version := "0.0.3-SNAPSHOT"
66

7-
scalaVersion := "2.12.3"
8-
crossScalaVersions := Seq("2.11.11", "2.12.3")
7+
scalaVersion := "2.12.6"
8+
crossScalaVersions := Seq(scalaVersion.value, "2.11.12")
99

1010
// dependencies common for all sub-projects
1111
libraryDependencies ++= Seq(
12-
"org.scala-lang.modules" %% "scala-xml" % "1.0.6"
12+
"org.scala-lang.modules" %% "scala-xml" % "1.1.0"
1313
)
1414

1515
lazy val xmlCompare = Project("xml-compare", file("xml-compare"))

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.0.2
1+
sbt.version=1.1.6

project/plugins.sbt

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
// code style
22
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
33
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
4-
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.12")
5-
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2")
6-
7-
// dependency management
8-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.1")
4+
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.15")
5+
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0")
96

107
// artifact publishing
11-
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.1")
12-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
8+
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.4")
9+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
1310

1411
// documentation
1512
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.1")

xml-compare/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name := "xml-compare"
22

33
libraryDependencies ++= Seq(
4-
"org.scalatest" %% "scalatest" % "3.0.4" % "test"
5-
)
4+
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
5+
)

xml-scalatest/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name := "xml-scalatest"
22

33
libraryDependencies ++= Seq(
4-
"org.scalatest" %% "scalatest" % "3.0.4" % "provided"
4+
"org.scalatest" %% "scalatest" % "3.0.5" % "provided"
55
)

xml-specs2/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name := "xml-specs2"
22

33
libraryDependencies ++= Seq(
4-
"org.specs2" %% "specs2-core" % "3.9.4" % "provided"
5-
)
4+
"org.specs2" %% "specs2-core" % "4.2.0" % "provided"
5+
)

0 commit comments

Comments
 (0)