Skip to content
This repository was archived by the owner on May 3, 2018. It is now read-only.

Commit 2fa846b

Browse files
committed
Merge pull request #1 from scala/travis
Bump to Scala 2.11.0-M6, enable Travis CI.
2 parents dd21444 + cb3361c commit 2fa846b

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: scala
2+
script:
3+
- sbt ++$TRAVIS_SCALA_VERSION compile
4+
scala:
5+
- 2.11.0-M6
6+
jdk:
7+
- oraclejdk6
8+
- openjdk7
9+
notifications:
10+
email:
11+

build.sbt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ version := "0.2"
99
libraryDependencies += "org.scala-sbt" % "test-interface" % "1.0"
1010

1111
// standard stuff follows:
12-
scalaVersion := "2.11.0-M4"
12+
scalaVersion := "2.11.0-M6"
1313

1414
// NOTE: not necessarily equal to scalaVersion
1515
// (e.g., during PR validation, we override scalaVersion to validate,
1616
// but don't rebuild scalacheck, so we don't want to rewire that dependency)
17-
scalaBinaryVersion := "2.11.0-M4"
17+
scalaBinaryVersion := "2.11.0-M6"
18+
19+
// to allow compiling against snapshot versions of Scala
20+
resolvers += Resolver.sonatypeRepo("snapshots")
1821

1922
// don't use for doc scope, scaladoc warnings are not to be reckoned with
2023
scalacOptions in compile ++= Seq("-optimize", "-Xfatal-warnings", "-feature", "-deprecation", "-unchecked", "-Xlint")

0 commit comments

Comments
 (0)