From 31a7407640d7569aa8e6dfe2c0cec8f4f0b51a24 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Thu, 2 Mar 2017 14:42:36 +0100 Subject: [PATCH] Remove build warnings Also collapse into one meta-build sbt file.. imo a better alternative toa adding a 5th single-line sbt file. --- project/bintray.sbt | 1 - project/contraband.sbt | 1 - project/doge.sbt | 1 - project/house.sbt | 1 - project/plugins.sbt | 6 ++++++ 5 files changed, 6 insertions(+), 4 deletions(-) delete mode 100644 project/bintray.sbt delete mode 100644 project/contraband.sbt delete mode 100644 project/doge.sbt delete mode 100644 project/house.sbt create mode 100644 project/plugins.sbt diff --git a/project/bintray.sbt b/project/bintray.sbt deleted file mode 100644 index 8dd913f98..000000000 --- a/project/bintray.sbt +++ /dev/null @@ -1 +0,0 @@ -addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0") diff --git a/project/contraband.sbt b/project/contraband.sbt deleted file mode 100644 index 88961b8f9..000000000 --- a/project/contraband.sbt +++ /dev/null @@ -1 +0,0 @@ -addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M3") diff --git a/project/doge.sbt b/project/doge.sbt deleted file mode 100644 index fedea9490..000000000 --- a/project/doge.sbt +++ /dev/null @@ -1 +0,0 @@ -addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.3") diff --git a/project/house.sbt b/project/house.sbt deleted file mode 100644 index bad061ebe..000000000 --- a/project/house.sbt +++ /dev/null @@ -1 +0,0 @@ -addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.2") diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 000000000..3c7fb1497 --- /dev/null +++ b/project/plugins.sbt @@ -0,0 +1,6 @@ +addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.2") +addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.3") +addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.0-M3") +addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0") + +scalacOptions += "-language:postfixOps"