Skip to content

Commit b3894ea

Browse files
Update artefact names in SBT tests
1 parent d933794 commit b3894ea

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

sbt-scala3/sbt-test/sbt-dotty/analyzer-plugin/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ lazy val plugin = project
55
.settings(
66
name := "init-checker",
77
version := "0.0.1",
8-
organization := "ch.epfl.lamp",
8+
organization := "org.scala-lang",
99
scalaVersion := dottyVersion,
1010

1111
libraryDependencies ++= Seq(
12-
"ch.epfl.lamp" %% "dotty-compiler" % scalaVersion.value % "provided"
12+
"org.scala-lang" %% "scala3-compiler" % scalaVersion.value % "provided"
1313
)
1414
)
1515

sbt-scala3/sbt-test/sbt-dotty/analyzer-plugin/changes/plugin.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ lazy val plugin = project
55
.settings(
66
name := "init-checker",
77
version := "0.0.1",
8-
organization := "ch.epfl.lamp",
8+
organization := "org.scala-lang",
99
scalaVersion := dottyVersion,
1010

1111
libraryDependencies ++= Seq(
12-
"ch.epfl.lamp" %% "dotty-compiler" % scalaVersion.value % "provided"
12+
"org.scala-lang" %% "scala3-compiler" % scalaVersion.value % "provided"
1313
)
1414
)
1515

@@ -23,6 +23,6 @@ lazy val app = project
2323
.in(file("app"))
2424
.settings(
2525
scalaVersion := dottyVersion,
26-
addCompilerPlugin("ch.epfl.lamp" %% "init-checker" % "0.0.1")
26+
addCompilerPlugin("org.scala-lang" %% "init-checker" % "0.0.1")
2727
)
2828
.dependsOn(lib)

sbt-scala3/sbt-test/sbt-dotty/analyzer-plugin/changes/retain.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ lazy val plugin = project
55
.settings(
66
name := "init-checker",
77
version := "0.0.1",
8-
organization := "ch.epfl.lamp",
8+
organization := "org.scala-lang",
99
scalaVersion := dottyVersion,
1010

1111
libraryDependencies ++= Seq(
12-
"ch.epfl.lamp" %% "dotty-compiler" % scalaVersion.value % "provided"
12+
"org.scala-lang" %% "scala3-compiler" % scalaVersion.value % "provided"
1313
)
1414
)
1515

@@ -24,6 +24,6 @@ lazy val app = project
2424
.settings(
2525
scalaVersion := dottyVersion,
2626
scalacOptions += "-Yretain-trees",
27-
addCompilerPlugin("ch.epfl.lamp" %% "init-checker" % "0.0.1")
27+
addCompilerPlugin("org.scala-lang" %% "init-checker" % "0.0.1")
2828
)
2929
.dependsOn(lib)

sbt-scala3/sbt-test/sbt-dotty/compiler-plugin/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ lazy val plugin = project
55
.settings(
66
name := "dividezero",
77
version := "0.0.1",
8-
organization := "ch.epfl.lamp",
8+
organization := "org.scala-lang",
99
scalaVersion := dottyVersion,
1010

1111
scalacOptions ++= Seq(
1212
"-language:implicitConversions"
1313
),
1414

1515
libraryDependencies ++= Seq(
16-
"ch.epfl.lamp" %% "dotty-compiler" % scalaVersion.value % "provided"
16+
"org.scala-lang" %% "scala3-compiler" % scalaVersion.value % "provided"
1717
)
1818
)
1919

sbt-scala3/sbt-test/sbt-dotty/compiler-plugin/changes/build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ lazy val plugin = project
55
.settings(
66
name := "dividezero",
77
version := "0.0.1",
8-
organization := "ch.epfl.lamp",
8+
organization := "org.scala-lang",
99
scalaVersion := dottyVersion,
1010

1111
libraryDependencies ++= Seq(
12-
"ch.epfl.lamp" %% "dotty" % scalaVersion.value % "provided"
12+
"org.scala-lang" %% "dotty" % scalaVersion.value % "provided"
1313
)
1414
)
1515

1616
lazy val app = project
1717
.in(file("app"))
1818
.settings(
1919
scalaVersion := dottyVersion,
20-
addCompilerPlugin("ch.epfl.lamp" %% "dividezero" % "0.0.1")
20+
addCompilerPlugin("org.scala-lang" %% "dividezero" % "0.0.1")
2121
)
2222

2323
lazy val appOk = project
2424
.in(file("appOk"))
2525
.settings(
2626
scalaVersion := dottyVersion,
27-
addCompilerPlugin("ch.epfl.lamp" %% "dividezero" % "0.0.1")
27+
addCompilerPlugin("org.scala-lang" %% "dividezero" % "0.0.1")
2828
)

sbt-scala3/sbt-test/sbt-dotty/dotty-knowledge.i17/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ val dottyVersion = "0.22.0-RC1"
33
lazy val root = project
44
.in(file("."))
55
.settings(
6-
name := "dotty-simple",
6+
name := "scala3-simple",
77
version := "0.1.0",
88

99
scalaVersion := dottyVersion,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.0")
1+
addSbtPlugin("org.scala-lang" % "sbt-dotty" % "0.4.0")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
scalaVersion := sys.props("plugin.scalaVersion")
22

3-
libraryDependencies += "ch.epfl.lamp" %% "dotty-staging" % scalaVersion.value
3+
libraryDependencies += "org.scala-lang" %% "scala3-staging" % scalaVersion.value
44

55
fork := true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
scalaVersion := sys.props("plugin.scalaVersion")
22

3-
libraryDependencies += "ch.epfl.lamp" %% "dotty-staging" % scalaVersion.value
3+
libraryDependencies += "org.scala-lang" %% "scala3-staging" % scalaVersion.value
44

55
fork := false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
scalaVersion := sys.props("plugin.scalaVersion")
22

33
libraryDependencies ++= Seq(
4-
"ch.epfl.lamp" %% "dotty-staging" % scalaVersion.value,
4+
"org.scala-lang" %% "scala3-staging" % scalaVersion.value,
55
"com.novocode" % "junit-interface" % "0.11" % "test"
66
)

sbt-scala3/sbt-test/sbt-dotty/quoted-example-project/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
> test
33
$ copy-file src/changes/Hello.scala src/main/scala/hello/Hello.scala
44
# -> compile FIXME: it succeeds, but should not (?)
5-
# it should not compile because the compiler should not be on the compiler classpath when depending on dotty-staging
5+
# it should not compile because the compiler should not be on the compiler classpath when depending on scala3-staging

sbt-scala3/sbt-test/sbt-dotty/tasty-inspector-example-project/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ lazy val app = project
1010
.in(file("app"))
1111
.settings(
1212
scalaVersion := dottyVersion,
13-
libraryDependencies += "ch.epfl.lamp" %% "dotty-tasty-inspector" % scalaVersion.value,
13+
libraryDependencies += "org.scala-lang" %% "scala3-tasty-inspector" % scalaVersion.value,
1414
)
1515
.dependsOn(lib)

0 commit comments

Comments
 (0)