Skip to content

Commit

Permalink
Upgrade versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rawyler committed Aug 14, 2019
1 parent 59c2fe3 commit dac4567
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name := "play-json-typedid"

organization := "com.tegonal"

version := "1.0.1"
version := "1.0.2"

scalaVersion := "2.11.1"
scalaVersion := "2.12.8"

lazy val root = (project in file(".")).enablePlugins(PlayScala)

Expand All @@ -13,7 +13,7 @@ resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/release
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"

libraryDependencies ++= Seq(
"org.scalatestplus" %% "play" % "1.1.0" % "test"
"org.scalatestplus.play" %% "scalatestplus-play" % "4.0.3" % "test"
)

resolvers ++= Seq(
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=0.13.5
sbt.version=1.2.8
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releas
resolvers += Classpaths.sbtPluginReleases

// Use the Play sbt plugin for Play projects
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.3")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.3")
11 changes: 3 additions & 8 deletions test/com/tegonal/play/json/TypedIdFormatSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,11 @@
\* */
package com.tegonal.play.genericid

import play.api.mvc._
import play.api.test._
import play.api.test.Helpers._
import play.api.libs.json._
import play.api.libs.json.Reads._
import play.api.libs.functional.syntax._
import com.tegonal.play.json._
import com.tegonal.play.json.TypedId._
import org.scalatestplus.play.PlaySpec
import play.api.libs.json._

object TypedIdFormatSpec extends PlaySpecification {
object TypedIdFormatSpec extends PlaySpec {
//Provide some helper classes
case class TestId1(value: String) extends StringBaseId
case class TestId2(value: BigDecimal) extends NumberBaseId
Expand Down

0 comments on commit dac4567

Please sign in to comment.