summaryrefslogtreecommitdiff
path: root/scalalib/src/test/resource/jawn/project
diff options
context:
space:
mode:
Diffstat (limited to 'scalalib/src/test/resource/jawn/project')
-rw-r--r--scalalib/src/test/resource/jawn/project/ReleaseHelper.scala34
-rw-r--r--scalalib/src/test/resource/jawn/project/build.properties1
-rw-r--r--scalalib/src/test/resource/jawn/project/plugins.sbt6
3 files changed, 0 insertions, 41 deletions
diff --git a/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala b/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala
deleted file mode 100644
index 354d6506..00000000
--- a/scalalib/src/test/resource/jawn/project/ReleaseHelper.scala
+++ /dev/null
@@ -1,34 +0,0 @@
-import sbt._
-import sbt.Keys._
-import sbt.complete.Parser
-
-object ReleaseHelper {
-
- /** Invoke a command and carry out remaining commands until completion.
- *
- * This is necessary because sbt-release's releaseStepCommand does not
- * execute remaining commands, which sbt-doge relies on.
- *
- * Based on https://github.com/playframework/playframework/blob/master/framework/project/Release.scala
- *
- * NOTE: This can be removed in favor of https://github.com/sbt/sbt-release/pull/171 if/when merged upstream
- */
- def runCommandAndRemaining(command: String): State => State = { originalState =>
- val originalRemaining = originalState.remainingCommands
-
- @annotation.tailrec
- def runCommand(command: String, state: State): State = {
- val newState = Parser.parse(command, state.combinedParser) match {
- case Right(cmd) => cmd()
- case Left(msg) => throw sys.error(s"Invalid programmatic input:\n$msg")
- }
- if (newState.remainingCommands.isEmpty) {
- newState
- } else {
- runCommand(newState.remainingCommands.head, newState.copy(remainingCommands = newState.remainingCommands.tail))
- }
- }
-
- runCommand(command, originalState.copy(remainingCommands = Nil)).copy(remainingCommands = originalRemaining)
- }
-}
diff --git a/scalalib/src/test/resource/jawn/project/build.properties b/scalalib/src/test/resource/jawn/project/build.properties
deleted file mode 100644
index 64317fda..00000000
--- a/scalalib/src/test/resource/jawn/project/build.properties
+++ /dev/null
@@ -1 +0,0 @@
-sbt.version=0.13.15
diff --git a/scalalib/src/test/resource/jawn/project/plugins.sbt b/scalalib/src/test/resource/jawn/project/plugins.sbt
deleted file mode 100644
index 618876a9..00000000
--- a/scalalib/src/test/resource/jawn/project/plugins.sbt
+++ /dev/null
@@ -1,6 +0,0 @@
-addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
-addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.2.25")
-addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.14")
-addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.1")
-addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.5")
-addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")