Skip to content

Commit

Permalink
Merge pull request #698 from magnolia-k/removed_ScriptedPlugin
Browse files Browse the repository at this point in the history
Removed ScriptedPlugin
  • Loading branch information
eed3si9n authored Aug 7, 2022
2 parents 84e289e + 70bf178 commit 756eda2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ lazy val crossSbt = Seq(
)

lazy val scaffold = (project in file("scaffold"))
.enablePlugins(SbtPlugin, SonatypePublish, ScriptedPlugin)
.enablePlugins(SbtPlugin, SonatypePublish)
.dependsOn(lib)
.settings(crossSbt)
.settings(
Expand All @@ -99,7 +99,7 @@ lazy val scaffold = (project in file("scaffold"))
)

lazy val plugin = (project in file("plugin"))
.enablePlugins(SbtPlugin, SonatypePublish, ScriptedPlugin)
.enablePlugins(SbtPlugin, SonatypePublish)
.dependsOn(lib)
.settings(crossSbt)
.settings(
Expand Down
4 changes: 0 additions & 4 deletions plugin/src/sbt-test/giter8/simple/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
enablePlugins(ScriptedPlugin)

scriptedBufferLog in (Test, g8) := false

TaskKey[Unit]("writeInvalidFile") := {
IO.write(file("src/main/g8/src/test/scala/invalid.scala"), "invalid file")
}
Expand Down
4 changes: 0 additions & 4 deletions plugin/src/sbt-test/giter8/without-name/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
enablePlugins(ScriptedPlugin)

scriptedBufferLog in (Test, g8) := false

val javaVmArgs: List[String] = {
import scala.collection.JavaConverters._
java.lang.management.ManagementFactory.getRuntimeMXBean.getInputArguments.asScala.toList
Expand Down

0 comments on commit 756eda2

Please sign in to comment.