Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit f3c6bb4

Browse files
committed
Fixed a bug with a missing build environment dependency for plugin devs with the new gui.
1 parent 8ba906c commit f3c6bb4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

project/BootstrapUtility.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ object BootstrapUtility {
159159

160160
// Fourth step: Copy required meta-build files
161161
val requiredBuildFiles = Set("BuildUtility.scala", "build.properties", "Plugin.scala", "PluginCreateWizard.scala",
162-
"PluginLanguage.scala", "PluginMetadata.scala", "SbtFile.scala", "APIUtility.scala", "RequirementsFile.scala")
162+
"PluginLanguage.scala", "PluginMetadata.scala", "SbtFile.scala", "APIUtility.scala", "RequirementsFile.scala",
163+
"dependencies.sbt")
163164

164165
for (filepath <- requiredBuildFiles) {
165166
val origFile = new File(s"project/$filepath")

project/dependencies.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// JSON lib (Jackson) used for parsing the GUI version in the package.json file
2+
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.5.2"

project/plugins.sbt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
11
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
2-
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
3-
4-
5-
// JSON lib (Jackson) used for parsing the GUI version in the package.json file
6-
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.5.2"
2+
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")

0 commit comments

Comments
 (0)