Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,8 @@ object Build {
// Should we also patch .sjsir files
keepSJSIR := false,
// Generate library.properties, used by scala.util.Properties
Compile / resourceGenerators += generateLibraryProperties.taskValue
Compile / resourceGenerators += generateLibraryProperties.taskValue,
mainClass := None,
)

/* Configuration of the org.scala-lang:scala3-library_3:*.**.**-nonbootstrapped project */
Expand Down Expand Up @@ -1304,6 +1305,7 @@ object Build {
publish / skip := false,
// Project specific target folder. sbt doesn't like having two projects using the same target folder
target := target.value / "scala3-library-nonbootstrapped",
mainClass := None,
)

/* Configuration of the org.scala-lang:scala-library:*.**.**-bootstrapped project */
Expand Down Expand Up @@ -1383,6 +1385,7 @@ object Build {
// Generate Scala 3 runtime properties overlay
Compile / resourceGenerators += generateLibraryProperties.taskValue,
bspEnabled := enableBspAllProjects,
mainClass := None,
)

/* Configuration of the org.scala-lang:scala3-library_3:*.**.**-bootstrapped project */
Expand Down Expand Up @@ -1427,6 +1430,7 @@ object Build {
// Project specific target folder. sbt doesn't like having two projects using the same target folder
target := target.value / "scala3-library-bootstrapped",
bspEnabled := enableBspAllProjects,
mainClass := None,
)

/* Configuration of the org.scala-js:scalajs-scalalib_2.13:*.**.**-bootstrapped project */
Expand Down Expand Up @@ -1557,6 +1561,7 @@ object Build {
// Should we also patch .sjsir files
keepSJSIR := true,
bspEnabled := false,
mainClass := None,
)

/* Configuration of the org.scala-lang:scala3-library_sjs1_3:*.**.**-bootstrapped project */
Expand Down Expand Up @@ -1599,6 +1604,7 @@ object Build {
// Project specific target folder. sbt doesn't like having two projects using the same target folder
target := target.value / "scala3-library",
bspEnabled := false,
mainClass := None,
)

// ==============================================================================================
Expand Down
Loading