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

build: upgrades #86

Merged
merged 1 commit into from
Jul 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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