Skip to content

Commit f9e9fb6

Browse files
authored
Merge pull request #39 from Philippus/update-template
Update template
2 parents 7a5d9fa + 4d746d0 commit f9e9fb6

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

src/main/g8/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
## Dotty Staging template project
1+
## Scala 3 Staging template project
22

33
### Usage
44

55
This is a normal sbt project, you can compile code with `sbt compile` and run it
6-
with `sbt run`, `sbt console` will start a Dotty REPL.
7-
8-
For more information on the sbt-dotty plugin, see the
9-
[dotty-example-project](https://github.com/lampepfl/dotty-example-project/blob/master/README.md).
6+
with `sbt run`, `sbt console` will start a Scala 3 REPL.

src/main/g8/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ val scala3Version = "3.2.0"
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 := scala3Version,
1010

1111
libraryDependencies ++= Seq(
1212
"org.scala-lang" %% "scala3-staging" % scala3Version,
13-
"com.github.sbt" % "junit-interface" % "0.13.2" % "test"
13+
"com.github.sbt" % "junit-interface" % "0.13.3" % "test"
1414
)
1515
)

src/main/g8/default.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
name=Dotty Staging Project Template
2-
description=A template to demonstrate a minimal Dotty staging application
1+
name=Scala 3 Staging Project Template
2+
description=A template to demonstrate a minimal Scala 3 staging application

src/main/g8/project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.6.1
1+
sbt.version=1.8.0

0 commit comments

Comments
 (0)