Skip to content

Commit

Permalink
update sbt version to 0.13.15 and fix deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Yusuke Izawa committed Apr 28, 2017
1 parent 44840db commit 6600efb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
9 changes: 7 additions & 2 deletions build.sbt
@@ -1,4 +1,9 @@
// --- project info ---
val virtScala = Option(System.getenv("SCALA_VIRTUALIZED_VERSION")).getOrElse("2.11.2")

lazy val lms = Project("LMS", file("."))

envVars := Map("showSuppressedErrors" -> "false", "showTimings" -> "false")

name := "lms-core"

Expand All @@ -21,9 +26,9 @@ scalaVersion := virtScala

scalaOrganization := "org.scala-lang.virtualized"

scalaSource in Compile <<= baseDirectory(_ / "src")
scalaSource in Compile := baseDirectory.value / "src"

scalaSource in Test <<= baseDirectory(_ / "test-src")
scalaSource in Test := baseDirectory.value / "test-src"

scalacOptions += "-Yvirtualize"

Expand Down
11 changes: 0 additions & 11 deletions project/Build.scala

This file was deleted.

2 changes: 1 addition & 1 deletion project/build.properties
@@ -1,2 +1,2 @@
#Project properties
sbt.version=0.13.8
sbt.version=0.13.15

0 comments on commit 6600efb

Please sign in to comment.