Skip to content

Commit

Permalink
include src/main/scala2.13[+\-] in default source paths
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Jun 25, 2022
1 parent 2e714aa commit 05b787b
Show file tree
Hide file tree
Showing 323 changed files with 520 additions and 554 deletions.
4 changes: 4 additions & 0 deletions bleep-core/src/main/scala/bleep/RelPath.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ import java.nio.file.Path

case class RelPath(segments: List[String]) {
override def toString: String = segments.mkString("/")

def /(str: String): RelPath = new RelPath(segments :+ str)

def prefixed(str: String): RelPath =
RelPath(str :: segments)

def withLast(f: String => String): RelPath =
segments match {
case init :+ last => new RelPath(init :+ f(last))
Expand Down
48 changes: 14 additions & 34 deletions bleep-core/src/main/scala/bleep/SourceLayout.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ object SourceLayout {
RelPath.force(s"src/$scope/scala"),
RelPath.force(s"src/$scope/java"),
RelPath.force(s"src/$scope/scala-${scalaVersion.binVersion}"),
RelPath.force(s"src/$scope/scala-${scalaVersion.epoch}")
RelPath.force(s"src/$scope/scala-${scalaVersion.epoch}"),
RelPath.force(s"src/$scope/scala-2.13${if (scalaVersion.binVersion >= "2.13") "+" else "-"}")
)
case None => JsonSet.empty
}
Expand All @@ -65,56 +66,36 @@ object SourceLayout {

case object CrossPure extends SourceLayout("cross-pure") {
override def sources(maybeScalaVersion: Option[Versions.Scala], maybePlatformId: Option[model.PlatformId], scope: String): JsonSet[RelPath] =
(maybeScalaVersion, maybePlatformId) match {
case (Some(scalaVersion), Some(platformId)) =>
val dotPlatform = "." + platformId.value
JsonSet(
RelPath.force(s"$dotPlatform/src/$scope/scala"),
RelPath.force(s"$dotPlatform/src/$scope/scala-${scalaVersion.binVersion}"),
RelPath.force(s"$dotPlatform/src/$scope/scala-${scalaVersion.epoch}"),
RelPath.force(s"$dotPlatform/src/$scope/java"),
RelPath.force(s"src/$scope/scala-${scalaVersion.binVersion}"),
RelPath.force(s"src/$scope/scala-${scalaVersion.epoch}"),
RelPath.force(s"src/$scope/scala")
)
maybePlatformId match {
case Some(platformId) =>
val fromNormal = Normal.sources(maybeScalaVersion, maybePlatformId, scope)
fromNormal ++ fromNormal.map(path => path.prefixed("." + platformId.value))
case _ => JsonSet.empty
}

override def resources(maybeScalaVersion: Option[Versions.Scala], maybePlatformId: Option[model.PlatformId], scope: String): JsonSet[RelPath] =
maybePlatformId match {
case Some(platformId) =>
val dotPlatform = "." + platformId.value
JsonSet(
RelPath.force(s"$dotPlatform/src/$scope/resources"),
RelPath.force(s"src/$scope/resources")
)
val fromNormal = Normal.resources(maybeScalaVersion, maybePlatformId, scope)
fromNormal ++ fromNormal.map(path => path.prefixed("." + platformId.value))
case _ => JsonSet.empty
}
}

case object CrossFull extends SourceLayout("cross-full") {
override def sources(maybeScalaVersion: Option[Versions.Scala], maybePlatformId: Option[model.PlatformId], scope: String): JsonSet[RelPath] =
(maybeScalaVersion, maybePlatformId) match {
case (Some(scalaVersion), Some(platformId)) =>
JsonSet(
RelPath.force(s"${platformId.value}/src/$scope/scala"),
RelPath.force(s"${platformId.value}/src/$scope/scala-${scalaVersion.binVersion}"),
RelPath.force(s"${platformId.value}/src/$scope/scala-${scalaVersion.epoch}"),
RelPath.force(s"${platformId.value}/src/$scope/java"),
RelPath.force(s"shared/src/$scope/scala-${scalaVersion.binVersion}"),
RelPath.force(s"shared/src/$scope/scala-${scalaVersion.epoch}"),
RelPath.force(s"shared/src/$scope/scala")
)
maybePlatformId match {
case Some(platformId) =>
val fromNormal = Normal.sources(maybeScalaVersion, maybePlatformId, scope)
fromNormal.map(path => path.prefixed("shared")) ++ fromNormal.map(path => path.prefixed(platformId.value))
case _ => JsonSet.empty
}

override def resources(maybeScalaVersion: Option[Versions.Scala], maybePlatformId: Option[model.PlatformId], scope: String): JsonSet[RelPath] =
maybePlatformId match {
case Some(platformId) =>
JsonSet(
RelPath.force(s"${platformId.value}/src/$scope/resources"),
RelPath.force(s"shared/src/$scope/resources")
)
val fromNormal = Normal.resources(maybeScalaVersion, maybePlatformId, scope)
fromNormal.map(path => path.prefixed("shared")) ++ fromNormal.map(path => path.prefixed(platformId.value))
case _ => JsonSet.empty
}
}
Expand Down Expand Up @@ -142,5 +123,4 @@ object SourceLayout {
RelPath.force(s"src/$scope/resources")
)
}

}
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/cli/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/cli/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/cli/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/cli/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/cli"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/core/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/core/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/core/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/core/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/core"
],
"dependencies": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/import-scalajs-definitions/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/import-scalajs-definitions/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/import-scalajs-definitions/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/import-scalajs-definitions/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/import-scalajs-definitions"
],
"dependencies": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/importer-portable/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer-portable/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer-portable/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer-portable/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/importer-portable"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/importer-test.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/test/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/test/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/importer-test"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/importer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/importer/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/importer"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/logging.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/logging/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/logging/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/logging/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/logging/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/logging"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/phases.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/phases/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/phases/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/phases/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/phases/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/phases"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/sbt-converter.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/sbt-converter/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/sbt-converter/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/sbt-converter/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/sbt-converter/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests-in/converter/sbt-converter/src/main/scala-sbt-1.0",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/sbt-converter"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/scalajs.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/scalajs/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/scalajs/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/scalajs/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/scalajs/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/scalajs"
],
"dependencies": [
Expand Down
3 changes: 2 additions & 1 deletion snapshot-tests/converter/.bleep/.bloop/scripts.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"<BLEEP_GIT>/snapshot-tests/converter/scripts/src/java",
"<BLEEP_GIT>/snapshot-tests/converter/scripts/src/scala",
"<BLEEP_GIT>/snapshot-tests/converter/scripts/src/scala-2",
"<BLEEP_GIT>/snapshot-tests/converter/scripts/src/scala-2.12"
"<BLEEP_GIT>/snapshot-tests/converter/scripts/src/scala-2.12",
"<BLEEP_GIT>/snapshot-tests/converter/scripts/src/scala-2.13-"
],
"dependencies": [

Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/converter/.bleep/.bloop/ts.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/converter/ts/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/converter/ts/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/converter/ts/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/converter/ts/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/converter/.bleep/generated-sources/ts"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/bench@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/bench@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/bench/src/main/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/bench@jvm3"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/core-test@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/core-test@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/core/src/test/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/core-test@jvm3"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/example-test@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/example-test@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/example@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/example@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/example/src/main/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/example@jvm3"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/free@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/free@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/free/src/main/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/free@jvm3"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-circe-test@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-circe-test@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/test/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-circe-test@jvm3"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-circe@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-circe@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2-circe/src/main/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-circe@jvm3"
],
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2.12",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2.13-",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-test@jvm212"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2.13",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-test@jvm213"
],
"dependencies": [
Expand Down
1 change: 1 addition & 0 deletions snapshot-tests/doobie/.bleep/.bloop/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sources": [
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/java",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-2.13+",
"<BLEEP_GIT>/snapshot-tests-in/doobie/modules/h2/src/test/scala-3",
"<BLEEP_GIT>/snapshot-tests/doobie/.bleep/generated-sources/h2-test@jvm3"
],
Expand Down
Loading

0 comments on commit 05b787b

Please sign in to comment.