Skip to content

Commit

Permalink
Updated to Scala 2.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
balhoff committed Jul 20, 2017
1 parent fa0b9f6 commit 16f7035
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: scala
scala:
- "2.11.8"
- "2.11.11"
- "2.12.2"
jdk:
- oraclejdk8
14 changes: 8 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "org.geneontology"

name := "arachne"

version := "1.1"
version := "1.1.1"

publishMavenStyle := true

Expand All @@ -22,7 +22,9 @@ licenses := Seq("BSD-3-Clause" -> url("https://opensource.org/licenses/BSD-3-Cla

homepage := Some(url("https://github.com/balhoff/arachne"))

scalaVersion := "2.11.11"
scalaVersion := "2.12.2"

crossScalaVersions := Seq("2.11.11", "2.12.2")

scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")

Expand All @@ -36,14 +38,14 @@ fork in Test := true

libraryDependencies ++= {
Seq(
"org.scalaz" %% "scalaz-core" % "7.2.1",
"org.scalaz" %% "scalaz-core" % "7.2.14",
"org.apache.jena" % "apache-jena-libs" % "3.2.0" pomOnly(),
"org.geneontology" %% "owl-to-rules" % "0.3.3",
"org.geneontology" %% "owl-to-rules" % "0.3.4",
"net.sourceforge.owlapi" % "owlapi-distribution" % "4.2.8",
"org.backuity.clist" %% "clist-core" % "3.2.2",
"org.backuity.clist" %% "clist-macros" % "3.2.2" % "provided",
"com.typesafe.scala-logging" %% "scala-logging" % "3.4.0",
"ch.qos.logback" % "logback-classic" % "1.1.7",
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.1",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.codehaus.groovy" % "groovy-all" % "2.4.6",
"org.scalatest" %% "scalatest" % "3.0.1" % Test
)
Expand Down

0 comments on commit 16f7035

Please sign in to comment.