File tree Expand file tree Collapse file tree 12 files changed +21
-21
lines changed
sbt-scala3/sbt-test/sbt-dotty
tasty-inspector-example-project Expand file tree Collapse file tree 12 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ lazy val plugin = project
5
5
.settings(
6
6
name := " init-checker" ,
7
7
version := " 0.0.1" ,
8
- organization := " ch.epfl.lamp " ,
8
+ organization := " org.scala-lang " ,
9
9
scalaVersion := dottyVersion,
10
10
11
11
libraryDependencies ++= Seq (
12
- " ch.epfl.lamp " %% " dotty -compiler" % scalaVersion.value % " provided"
12
+ " org.scala-lang " %% " scala3 -compiler" % scalaVersion.value % " provided"
13
13
)
14
14
)
15
15
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ lazy val plugin = project
5
5
.settings(
6
6
name := " init-checker" ,
7
7
version := " 0.0.1" ,
8
- organization := " ch.epfl.lamp " ,
8
+ organization := " org.scala-lang " ,
9
9
scalaVersion := dottyVersion,
10
10
11
11
libraryDependencies ++= Seq (
12
- " ch.epfl.lamp " %% " dotty -compiler" % scalaVersion.value % " provided"
12
+ " org.scala-lang " %% " scala3 -compiler" % scalaVersion.value % " provided"
13
13
)
14
14
)
15
15
@@ -23,6 +23,6 @@ lazy val app = project
23
23
.in(file(" app" ))
24
24
.settings(
25
25
scalaVersion := dottyVersion,
26
- addCompilerPlugin(" ch.epfl.lamp " %% " init-checker" % " 0.0.1" )
26
+ addCompilerPlugin(" org.scala-lang " %% " init-checker" % " 0.0.1" )
27
27
)
28
28
.dependsOn(lib)
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ lazy val plugin = project
5
5
.settings(
6
6
name := " init-checker" ,
7
7
version := " 0.0.1" ,
8
- organization := " ch.epfl.lamp " ,
8
+ organization := " org.scala-lang " ,
9
9
scalaVersion := dottyVersion,
10
10
11
11
libraryDependencies ++= Seq (
12
- " ch.epfl.lamp " %% " dotty -compiler" % scalaVersion.value % " provided"
12
+ " org.scala-lang " %% " scala3 -compiler" % scalaVersion.value % " provided"
13
13
)
14
14
)
15
15
@@ -24,6 +24,6 @@ lazy val app = project
24
24
.settings(
25
25
scalaVersion := dottyVersion,
26
26
scalacOptions += " -Yretain-trees" ,
27
- addCompilerPlugin(" ch.epfl.lamp " %% " init-checker" % " 0.0.1" )
27
+ addCompilerPlugin(" org.scala-lang " %% " init-checker" % " 0.0.1" )
28
28
)
29
29
.dependsOn(lib)
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ lazy val plugin = project
5
5
.settings(
6
6
name := " dividezero" ,
7
7
version := " 0.0.1" ,
8
- organization := " ch.epfl.lamp " ,
8
+ organization := " org.scala-lang " ,
9
9
scalaVersion := dottyVersion,
10
10
11
11
scalacOptions ++= Seq (
12
12
" -language:implicitConversions"
13
13
),
14
14
15
15
libraryDependencies ++= Seq (
16
- " ch.epfl.lamp " %% " dotty -compiler" % scalaVersion.value % " provided"
16
+ " org.scala-lang " %% " scala3 -compiler" % scalaVersion.value % " provided"
17
17
)
18
18
)
19
19
Original file line number Diff line number Diff line change @@ -5,24 +5,24 @@ lazy val plugin = project
5
5
.settings(
6
6
name := " dividezero" ,
7
7
version := " 0.0.1" ,
8
- organization := " ch.epfl.lamp " ,
8
+ organization := " org.scala-lang " ,
9
9
scalaVersion := dottyVersion,
10
10
11
11
libraryDependencies ++= Seq (
12
- " ch.epfl.lamp " %% " dotty" % scalaVersion.value % " provided"
12
+ " org.scala-lang " %% " dotty" % scalaVersion.value % " provided"
13
13
)
14
14
)
15
15
16
16
lazy val app = project
17
17
.in(file(" app" ))
18
18
.settings(
19
19
scalaVersion := dottyVersion,
20
- addCompilerPlugin(" ch.epfl.lamp " %% " dividezero" % " 0.0.1" )
20
+ addCompilerPlugin(" org.scala-lang " %% " dividezero" % " 0.0.1" )
21
21
)
22
22
23
23
lazy val appOk = project
24
24
.in(file(" appOk" ))
25
25
.settings(
26
26
scalaVersion := dottyVersion,
27
- addCompilerPlugin(" ch.epfl.lamp " %% " dividezero" % " 0.0.1" )
27
+ addCompilerPlugin(" org.scala-lang " %% " dividezero" % " 0.0.1" )
28
28
)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ val dottyVersion = "0.22.0-RC1"
3
3
lazy val root = project
4
4
.in(file(" ." ))
5
5
.settings(
6
- name := " dotty -simple" ,
6
+ name := " scala3 -simple" ,
7
7
version := " 0.1.0" ,
8
8
9
9
scalaVersion := dottyVersion,
Original file line number Diff line number Diff line change 1
- addSbtPlugin(" ch.epfl.lamp " % " sbt-dotty" % " 0.4.0" )
1
+ addSbtPlugin(" org.scala-lang " % " sbt-dotty" % " 0.4.0" )
Original file line number Diff line number Diff line change 1
1
scalaVersion := sys.props(" plugin.scalaVersion" )
2
2
3
- libraryDependencies += " ch.epfl.lamp " %% " dotty -staging" % scalaVersion.value
3
+ libraryDependencies += " org.scala-lang " %% " scala3 -staging" % scalaVersion.value
4
4
5
5
fork := true
Original file line number Diff line number Diff line change 1
1
scalaVersion := sys.props(" plugin.scalaVersion" )
2
2
3
- libraryDependencies += " ch.epfl.lamp " %% " dotty -staging" % scalaVersion.value
3
+ libraryDependencies += " org.scala-lang " %% " scala3 -staging" % scalaVersion.value
4
4
5
5
fork := false
Original file line number Diff line number Diff line change 1
1
scalaVersion := sys.props(" plugin.scalaVersion" )
2
2
3
3
libraryDependencies ++= Seq (
4
- " ch.epfl.lamp " %% " dotty -staging" % scalaVersion.value,
4
+ " org.scala-lang " %% " scala3 -staging" % scalaVersion.value,
5
5
" com.novocode" % " junit-interface" % " 0.11" % " test"
6
6
)
Original file line number Diff line number Diff line change 2
2
> test
3
3
$ copy-file src/changes/Hello.scala src/main/scala/hello/Hello.scala
4
4
# -> 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
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ lazy val app = project
10
10
.in(file(" app" ))
11
11
.settings(
12
12
scalaVersion := dottyVersion,
13
- libraryDependencies += " ch.epfl.lamp " %% " dotty -tasty-inspector" % scalaVersion.value,
13
+ libraryDependencies += " org.scala-lang " %% " scala3 -tasty-inspector" % scalaVersion.value,
14
14
)
15
15
.dependsOn(lib)
You can’t perform that action at this time.
0 commit comments