Skip to content

Commit c6af808

Browse files
authored
Merge pull request #52 from sh0hei/use-slash-syntax
Use slash-syntax instead of old in-syntax
2 parents e2187fe + 6363db7 commit c6af808

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
scala3.g8: simple scala3-compiled sbt project template
22
=================
3-
[![Build Status](https://travis-ci.org/scala/scala3.g8.svg?branch=master)](https://travis-ci.org/scala/scala3.g8/)
3+
[![Build Status](https://travis-ci.com/scala/scala3.g8.svg?branch=master)](https://travis-ci.com/scala/scala3.g8/)
44

55
A [Giter8][g8] template for a minimal [Scala 3] project.
66

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ lazy val root = project
66
.in(file("."))
77
.settings(
88
name := "dotty-template",
9-
test in Test := {
10-
val _ = (g8Test in Test).toTask("").value
9+
Test / test := {
10+
val _ = (Test / g8Test).toTask("").value
1111
},
1212
scriptedLaunchOpts ++= List("-Xms1024m", "-Xmx1024m", "-XX:ReservedCodeCacheSize=128m", "-XX:MaxPermSize=256m", "-Xss2m", "-Dfile.encoding=UTF-8"),
1313
resolvers += Resolver.url("typesafe", url("https://repo.typesafe.com/typesafe/ivy-releases/"))(Resolver.ivyStylePatterns),

src/main/g8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
This is a normal sbt project. You can compile code with `sbt compile`, run it with `sbt run`, and `sbt console` will start a Scala 3 REPL.
66

77
For more information on the sbt-dotty plugin, see the
8-
[dotty-example-project](https://github.com/lampepfl/dotty-example-project/blob/master/README.md).
8+
[scala3-example-project](https://github.com/scala/scala3-example-project/blob/main/README.md).

0 commit comments

Comments
 (0)