Skip to content

Commit

Permalink
compile against scala 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
t3hnar committed Mar 24, 2017
1 parent 4a3d374 commit 4df114d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 44 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: scala
scala:
- 2.12.1
- 2.11.8
- 2.10.6
jdk: oraclejdk8
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# ScalaX [![Build Status](https://travis-ci.org/t3hnar/scalax.svg)](https://travis-ci.org/t3hnar/scalax) [![Coverage Status](https://coveralls.io/repos/t3hnar/scalax/badge.svg)](https://coveralls.io/r/t3hnar/scalax) [![Version](https://img.shields.io/maven-central/v/com.github.t3hnar/scalax_2.11.svg?label=version)](http://search.maven.org/#search%7Cga%7C1%7Cg%3Acom.github.t3hnar%20AND%20scalax)
# ScalaX [![Build Status](https://travis-ci.org/t3hnar/scalax.svg)](https://travis-ci.org/t3hnar/scalax) [![Coverage Status](https://coveralls.io/repos/t3hnar/scalax/badge.svg)](https://coveralls.io/r/t3hnar/scalax) [![Version](https://img.shields.io/maven-central/v/com.github.t3hnar/scalax_2.12.svg?label=version)](http://search.maven.org/#search%7Cga%7C1%7Cg%3Acom.github.t3hnar%20AND%20scalax)

Extension for [Scala](http://www.scala-lang.org) library

Expand Down
7 changes: 3 additions & 4 deletions build.sbt
@@ -1,14 +1,13 @@
import scalariform.formatter.preferences._
import com.typesafe.sbt.SbtScalariform
import com.typesafe.sbt.SbtScalariform.ScalariformKeys

name := "scalax"

organization := "com.github.t3hnar"

scalaVersion := "2.11.8"
scalaVersion := "2.12.1"

crossScalaVersions := Seq("2.10.6", "2.11.8")
crossScalaVersions := Seq("2.12.1", "2.11.8", "2.10.6")

licenses := Seq(("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))

Expand All @@ -26,7 +25,7 @@ scalacOptions := Seq(
"-Ywarn-numeric-widen",
"-Xfuture")

libraryDependencies += "org.specs2" %% "specs2-core" % "3.8.5" % Test
libraryDependencies += "org.specs2" %% "specs2-core" % "3.8.6" % Test

organization := "com.github.t3hnar"

Expand Down

This file was deleted.

26 changes: 0 additions & 26 deletions src/test/scala/com/github/t3hnar/scalax/RichTrySpec.scala

This file was deleted.

0 comments on commit 4df114d

Please sign in to comment.