Skip to content

Commit

Permalink
Update RunCommunityProjects.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
RCMartins committed Apr 9, 2021
1 parent 6016e39 commit 4ce2a20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions project/RunCommunityProjects.scala
Expand Up @@ -5,10 +5,10 @@ object RunCommunityProjects {

private case class Project(url: String, folderName: String, blinkyConf: String)

private def defaultBlinkyConf(projectName: String): String =
private def defaultBlinkyConf(projectName: String, filesToMutate: String): String =
s"""projectPath = "."
|projectName = "$projectName"
|filesToMutate = "core/src/main"
|filesToMutate = "$filesToMutate"
|""".stripMargin

private val pluginsText = """addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.8")"""
Expand All @@ -18,12 +18,12 @@ object RunCommunityProjects {
"spire" -> Project(
"https://github.com/typelevel/spire.git",
"spire",
defaultBlinkyConf("testsJVM")
defaultBlinkyConf("testsJVM", "core/src/main")
),
"playframework" -> Project(
"https://github.com/playframework/playframework.git",
"playframework",
defaultBlinkyConf("Play")
defaultBlinkyConf("Play", "core/play/src/main")
)
)

Expand Down

0 comments on commit 4ce2a20

Please sign in to comment.