From 39ff4cb8bf567e3b7b955654d3d3b99ccbd7a4ec Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Mon, 23 Oct 2017 14:39:23 -0700 Subject: Simplify sbt plugins --- home/.sbt/.rsyncignore | 10 ++++++---- home/.sbt/0.13/build.sbt | 7 ------- home/.sbt/0.13/plugins/plugins.sbt | 7 +------ 3 files changed, 7 insertions(+), 17 deletions(-) diff --git a/home/.sbt/.rsyncignore b/home/.sbt/.rsyncignore index 5330287..d577894 100644 --- a/home/.sbt/.rsyncignore +++ b/home/.sbt/.rsyncignore @@ -1,4 +1,6 @@ -- /boot/ -- /project/ -- /staging/ -- /target/ \ No newline at end of file +- boot/ +- project/ +- staging/ +- target/ +- templates/ +- zinc/ diff --git a/home/.sbt/0.13/build.sbt b/home/.sbt/0.13/build.sbt index b4d3f81..0ae14bd 100644 --- a/home/.sbt/0.13/build.sbt +++ b/home/.sbt/0.13/build.sbt @@ -1,12 +1,5 @@ cancelable in Global := true -// configure gpg -import com.typesafe.sbt.pgp.PgpKeys._ -gpgCommand in Global := "gpg2" -pgpSigningKey in Global := Some(0x2CED17AB2B6D6F37l) -useGpgAgent in Global := true -useGpg in Global := true - // don't create target directory when starting sbt in non-project directory // (e.g. when running sbt-new) import java.nio.file.Files diff --git a/home/.sbt/0.13/plugins/plugins.sbt b/home/.sbt/0.13/plugins/plugins.sbt index 872f52d..54d3af2 100644 --- a/home/.sbt/0.13/plugins/plugins.sbt +++ b/home/.sbt/0.13/plugins/plugins.sbt @@ -1,13 +1,8 @@ -addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0") - -// Check if newer versions of library dependencies are available -addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.10") - // Get a graph of all dlibrary ependencies (including transitive ones) 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.13") +addSbtPlugin("org.ensime" % "sbt-ensime" % "1.12.15") // Enable fast dependency resolution // can be disabled with `sbt -Dcoursier=false` -- cgit v1.2.3