aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/.sbt/.rsyncignore10
-rw-r--r--home/.sbt/0.13/build.sbt7
-rw-r--r--home/.sbt/0.13/plugins/plugins.sbt7
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`