Skip to content

Commit

Permalink
Merge e4c5432 into d22af22
Browse files Browse the repository at this point in the history
  • Loading branch information
KarelCemus committed May 9, 2020
2 parents d22af22 + e4c5432 commit b23aee3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ description := "Redis cache plugin for the Play framework 2"

organization := "com.github.karelcemus"

scalaVersion := "2.13.0"
scalaVersion := "2.13.2"

crossScalaVersions := Seq( "2.12.10", scalaVersion.value )
crossScalaVersions := Seq( "2.12.11", scalaVersion.value )

playVersion := "2.8.0"
playVersion := "2.8.1"

connectorVersion := "1.9.1"

specs2Version := "4.8.1"
specs2Version := "4.9.4"

libraryDependencies ++= Seq(
// play framework cache API
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.5
sbt.version=1.3.10
14 changes: 7 additions & 7 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
resolvers += Resolver.url( "scoverage-bintray", url( "https://dl.bintray.com/sksamuel/sbt-plugins/" ) )( Resolver.ivyStylePatterns )

// library release
addSbtPlugin( "com.github.gseitz" % "sbt-release" % "1.0.11" )
addSbtPlugin( "com.github.gseitz" % "sbt-release" % "1.0.13" )

// PGP signature
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")

// checks for updates
addSbtPlugin( "com.timushev.sbt" % "sbt-updates" % "0.4.0" )
addSbtPlugin( "com.timushev.sbt" % "sbt-updates" % "0.5.0" )

// code coverage
addSbtPlugin( "org.scoverage" % "sbt-scoverage" % "1.6.0" )
addSbtPlugin( "org.scoverage" % "sbt-scoverage" % "1.6.1" )

// uploads the coverage results into the coveralls.io
addSbtPlugin( "org.scoverage" % "sbt-coveralls" % "1.2.2" )
addSbtPlugin( "org.scoverage" % "sbt-coveralls" % "1.2.7" )

// lists project dependencies
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.0")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")

// code linter
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.2")
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.3")

0 comments on commit b23aee3

Please sign in to comment.