Skip to content

Commit 75c20ad

Browse files
authored
Merge pull request #4 from SethTisue/add-travis
add a basic Travis build
2 parents 8740eec + cefee03 commit 75c20ad

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: scala
2+
jdk: oraclejdk8
3+
script: sbt test

build.sbt

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name := "collections"
44

55
version := "0.1-SNAPSHOT"
66

7-
scalaVersion := "2.12.0-RC1"
7+
scalaVersion := "2.12.1"
88

99
scalacOptions ++= Seq("-deprecation", "-unchecked")
1010

@@ -15,7 +15,6 @@ fork in Test := true
1515
parallelExecution in Test := false
1616

1717
libraryDependencies ++= Seq(
18-
"org.scala-lang.modules" %% "scala-java8-compat" % "0.8.0-RC7",
18+
"org.scala-lang.modules" %% "scala-java8-compat" % "0.8.0",
1919
"com.novocode" % "junit-interface" % "0.11" % "test"
2020
)
21-

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.11
1+
sbt.version=0.13.13

0 commit comments

Comments
 (0)