Skip to content

Commit b340f1c

Browse files
committed
Strip -bootstrap suffix from all published JARs names - no need to expose implementation detail in POM metadata
1 parent 1aee659 commit b340f1c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

project/Build.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ object Build {
457457
import java.text._
458458
val dateFormat = new SimpleDateFormat("yyyyMMdd-HHmmss")
459459
dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"))
460-
460+
461461
val fileName = "compiler.properties"
462462
val contents = Def.setting {
463463
s"""version.number=${version.value}
@@ -1623,7 +1623,7 @@ object Build {
16231623
.dependsOn(`scala3-compiler-bootstrapped-new`, `scala3-repl`) // TODO: Would this actually evict the reference compiler in scala-tool?
16241624
.settings(publishSettings)
16251625
.settings(
1626-
name := "scala3-sbt-bridge-bootstrapped",
1626+
name := "scala3-sbt-bridge",
16271627
moduleName := "scala3-sbt-bridge",
16281628
version := dottyVersion,
16291629
versionScheme := Some("semver-spec"),
@@ -1995,7 +1995,7 @@ object Build {
19951995
.enablePlugins(ScalaLibraryPlugin)
19961996
.settings(publishSettings)
19971997
.settings(
1998-
name := "scala-library-bootstrapped",
1998+
name := "scala-library",
19991999
moduleName := "scala-library",
20002000
version := dottyVersion,
20012001
// We mark the current library as "always" instead of "semver-spec" so that buildtools can
@@ -2082,7 +2082,7 @@ object Build {
20822082
.dependsOn(`scala-library-bootstrapped`)
20832083
.settings(publishSettings)
20842084
.settings(
2085-
name := "scala3-library-bootstrapped",
2085+
name := "scala3-library",
20862086
moduleName := "scala3-library",
20872087
version := dottyVersion,
20882088
versionScheme := Some("semver-spec"),
@@ -2358,7 +2358,7 @@ object Build {
23582358
.settings(publishSettings)
23592359
.settings(commonMiMaSettings)
23602360
.settings(
2361-
name := "tasty-core-bootstrapped",
2361+
name := "tasty-core",
23622362
moduleName := "tasty-core",
23632363
version := dottyVersion,
23642364
versionScheme := Some("semver-spec"),
@@ -2582,7 +2582,7 @@ object Build {
25822582
.dependsOn(`scala3-interfaces`, `tasty-core-bootstrapped-new`, `scala3-library-bootstrapped-new`)
25832583
.settings(publishSettings)
25842584
.settings(
2585-
name := "scala3-compiler-bootstrapped",
2585+
name := "scala3-compiler",
25862586
moduleName := "scala3-compiler",
25872587
version := dottyVersion,
25882588
versionScheme := Some("semver-spec"),

0 commit comments

Comments
 (0)