Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Commit

Permalink
build: upgrades
Browse files Browse the repository at this point in the history
 - upgrade scodec to 1.8.1 and thereby shapeless to 2.2.4

 - upgrade scodec-scalaz to 1.1.0 in order to match
   scodec upgrade.

 - fix `DescribeSpec` wrt. casing.

 - bump travis jdk versions.
  • Loading branch information
ahjohannessen committed Jul 9, 2015
1 parent 0562b4e commit 66c5c10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ scala:
- 2.10.5
- 2.11.6
jdk:
- oraclejdk7
- openjdk6
- oraclejdk8
- openjdk7

script: sbt ++$TRAVIS_SCALA_VERSION +test

Expand Down
4 changes: 2 additions & 2 deletions core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ scalacOptions ++= Seq(
)

libraryDependencies ++= Seq(
"org.scodec" %% "scodec-core" % "1.7.0",
"org.scodec" %% "scodec-scalaz" % "1.0.0",
"org.scodec" %% "scodec-core" % "1.8.1",
"org.scodec" %% "scodec-scalaz" % "1.1.0",
"org.scalaz" %% "scalaz-core" % "7.1.0",
"org.scalaz.stream" %% "scalaz-stream" % "0.7a",
"org.apache.commons" % "commons-pool2" % "2.2",
Expand Down
2 changes: 1 addition & 1 deletion test-server/src/test/scala/DescribeSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class DescribeSpec extends FlatSpec
desc should contain (Signature("foo", Nil, "remotely.test.Foo"))
desc should contain (Signature("fooId", List(Field("in", "remotely.test.Foo")), "remotely.test.Foo"))
desc should contain (Signature("foobar", List(Field("in", "remotely.test.Foo")), "remotely.test.Bar"))
desc should contain (Signature("describe", Nil, "List[Remotely.Signature]"))
desc should contain (Signature("describe", Nil, "List[remotely.Signature]"))
}

behavior of "Client"
Expand Down

0 comments on commit 66c5c10

Please sign in to comment.