aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-05-01 12:11:07 -0700
committerJakob Odersky <jakob@odersky.com>2017-05-01 12:11:07 -0700
commit1d6e9ee742575add4366619591f3d5be3813e609 (patch)
treeb262398702e925184c2a6e0a9b8e98640bf5ff57
parentf7154992b824d20c646b72f03ad6d8ffa702ee06 (diff)
downloaddotfiles-1d6e9ee742575add4366619591f3d5be3813e609.tar.gz
dotfiles-1d6e9ee742575add4366619591f3d5be3813e609.tar.bz2
dotfiles-1d6e9ee742575add4366619591f3d5be3813e609.zip
Update sbt config
-rw-r--r--home/.sbt/0.13/build.sbt2
-rw-r--r--home/.sbt/0.13/plugins/plugins.sbt7
2 files changed, 6 insertions, 3 deletions
diff --git a/home/.sbt/0.13/build.sbt b/home/.sbt/0.13/build.sbt
index c0f69bc..e35af5f 100644
--- a/home/.sbt/0.13/build.sbt
+++ b/home/.sbt/0.13/build.sbt
@@ -8,7 +8,7 @@ useGpgAgent in Global := true
useGpg in Global := true
// use ensime snapshot version
-import org.ensime.EnsimeCoursierKeys._
+import org.ensime.EnsimeKeys._
ensimeServerVersion in ThisBuild := "2.0.0-SNAPSHOT"
// don't create target directory when starting sbt in non-project directory
diff --git a/home/.sbt/0.13/plugins/plugins.sbt b/home/.sbt/0.13/plugins/plugins.sbt
index 753e711..ab7c6c7 100644
--- a/home/.sbt/0.13/plugins/plugins.sbt
+++ b/home/.sbt/0.13/plugins/plugins.sbt
@@ -7,11 +7,14 @@ addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.10")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.2")
// ENSIME brings Scala and Java IDE-like features to your favourite text editor
-addSbtPlugin("org.ensime" % "sbt-ensime" % "1.12.9")
+addSbtPlugin("org.ensime" % "sbt-ensime" % "1.12.10")
// Enable fast dependency resolution
// can be disabled with `sbt -Dcoursier=false`
sys.props.get("coursier") match {
case Some("false") => Seq()
- case _ => addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M15-5")
+ case _ => addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-RC1")
}
+
+// Automatic formatting
+addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.6.8")