Skip to content

Commit

Permalink
Drop support for Scala 2.10 (closes #132)
Browse files Browse the repository at this point in the history
  • Loading branch information
asoltysik committed Sep 18, 2018
1 parent 28bacef commit 4d25cab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: scala
scala:
- 2.10.6
- 2.11.8
- 2.11.12
jdk:
- oraclejdk7
- openjdk7
Expand All @@ -19,5 +18,5 @@ deploy:
provider: script
script: ./.travis/deploy.sh $TRAVIS_TAG
on:
condition: '"${TRAVIS_SCALA_VERSION}" == "2.11.8" && "${TRAVIS_JDK_VERSION}" == "oraclejdk7"'
condition: '"${TRAVIS_SCALA_VERSION}" == "2.11.12" && "${TRAVIS_JDK_VERSION}" == "oraclejdk7"'
tags: true
4 changes: 2 additions & 2 deletions project/BuildSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ object BuildSettings {
// Basic settings for our app
lazy val buildSettings = Seq[Setting[_]](
organization := "com.snowplowanalytics",
scalaVersion := "2.11.8",
crossScalaVersions := Seq("2.10.6", "2.11.8"),
scalaVersion := "2.11.12",
crossScalaVersions := Seq("2.11.12"),
scalacOptions := compilerOptions
)

Expand Down

0 comments on commit 4d25cab

Please sign in to comment.