File tree Expand file tree Collapse file tree 11 files changed +20
-20
lines changed
sbt-dotty/sbt-test/sbt-dotty
tasty-inspector-example-project Expand file tree Collapse file tree 11 files changed +20
-20
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
1616lazy 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
2323lazy 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 )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ val dottyVersion = "0.22.0-RC1"
33lazy 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,
Original file line number Diff line number Diff line change 11scalaVersion := sys.props(" plugin.scalaVersion" )
22
3- libraryDependencies += " ch.epfl.lamp " %% " dotty -staging" % scalaVersion.value
3+ libraryDependencies += " org.scala-lang " %% " scala3 -staging" % scalaVersion.value
44
55fork := true
Original file line number Diff line number Diff line change 11scalaVersion := sys.props(" plugin.scalaVersion" )
22
3- libraryDependencies += " ch.epfl.lamp " %% " dotty -staging" % scalaVersion.value
3+ libraryDependencies += " org.scala-lang " %% " scala3 -staging" % scalaVersion.value
44
55fork := false
Original file line number Diff line number Diff line change 11scalaVersion := sys.props(" plugin.scalaVersion" )
22
33libraryDependencies ++= 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 )
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments