Skip to content

Commit bff2625

Browse files
committed
release package name should remain scala-repl-pp
1 parent 877b258 commit bff2625

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

build.sbt

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name := "srp-root"
1+
name := "scala-repl-pp-root"
22
ThisBuild/organization := "com.michaelpollmeier"
33
publish/skip := true
44

@@ -16,13 +16,13 @@ releasePackage := {
1616
}
1717

1818
lazy val core_364 = Build
19-
.newProject("core", "3.6.4", "srp")
19+
.newProject("core", "3.6.4", "scala-repl-pp")
2020
.dependsOn(shadedLibs)
2121
.enablePlugins(JavaAppPackaging)
2222
.settings(coreSettings)
2323

2424
lazy val core_352 = Build
25-
.newProject("core", "3.5.2", "srp")
25+
.newProject("core", "3.5.2", "scala-repl-pp")
2626
.dependsOn(shadedLibs)
2727
.enablePlugins(JavaAppPackaging)
2828
.settings(coreSettings)
@@ -31,14 +31,11 @@ lazy val coreSettings = commonSettings ++ Seq(
3131
Compile/mainClass := Some("replpp.Main"),
3232
executableScriptName := "srp",
3333
Universal/topLevelDirectory := Some("srp"),
34-
libraryDependencies ++= Seq(
35-
"org.scala-lang" %% "scala3-compiler" % scalaVersion.value,
36-
"org.slf4j" % "slf4j-simple" % Slf4jVersion % Optional,
37-
),
34+
libraryDependencies += "org.scala-lang" %% "scala3-compiler" % scalaVersion.value,
3835
)
3936

4037
lazy val shadedLibs = project.in(file("shaded-libs")).settings(
41-
name := "srp-shaded-libs",
38+
name := "scala-repl-pp-shaded-libs",
4239
scalaVersion := scalaVersions.min,
4340
Compile/compile/scalacOptions ++= Seq(
4441
"-language:implicitConversions",
@@ -65,6 +62,7 @@ lazy val serverSettings = commonSettings ++ Seq(
6562
Compile/mainClass := Some("replpp.server.Main"),
6663
libraryDependencies ++= Seq(
6764
"com.lihaoyi" %% "cask" % "0.9.5",
65+
"org.slf4j" % "slf4j-api" % Slf4jVersion,
6866
"org.slf4j" % "slf4j-simple" % Slf4jVersion % Optional,
6967
"com.lihaoyi" %% "requests" % "0.8.2" % Test,
7068
),

0 commit comments

Comments
 (0)