Skip to content

Commit 52bd4cf

Browse files
committed
Rename scala2-library-tasty with experimental
This is to prepare the it for release. The name of the jar will be `scala2-library-tasty-experimental` to make it clear that it is not stable yet.
1 parent 8b8caa9 commit 52bd4cf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

project/Build.scala

+2
Original file line numberDiff line numberDiff line change
@@ -1229,6 +1229,7 @@ object Build {
12291229
lazy val `scala2-library-tasty` = project.in(file("scala2-library-tasty")).
12301230
withCommonSettings(Bootstrapped).
12311231
settings(
1232+
moduleName := "scala2-library-tasty-experimental",
12321233
exportJars := true,
12331234
Compile / packageBin / mappings := {
12341235
(`scala2-library-bootstrapped` / Compile / packageBin / mappings).value
@@ -1240,6 +1241,7 @@ object Build {
12401241
lazy val `scala2-library-cc-tasty` = project.in(file("scala2-library-cc-tasty")).
12411242
withCommonSettings(Bootstrapped).
12421243
settings(
1244+
moduleName := "scala2-library-cc-tasty-experimental",
12431245
exportJars := true,
12441246
Compile / packageBin / mappings := {
12451247
(`scala2-library-cc` / Compile / packageBin / mappings).value
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
scalaVersion := sys.props("plugin.scalaVersion")
22

3-
libraryDependencies += "org.scala-lang" %% "scala2-library-tasty" % scalaVersion.value
3+
libraryDependencies += "org.scala-lang" %% "scala2-library-tasty-experimental" % scalaVersion.value
44
scalacOptions += "-Yscala2-unpickler:never" // check that we do not load symbol from the Scala 2 library classfiles (use TASTy)

0 commit comments

Comments
 (0)