1
1
// This build is for this Giter8 template.
2
2
// To test the template run `g8` or `g8Test` from the sbt session.
3
3
// See http://www.foundweekends.org/giter8/testing.html#Using+the+Giter8Plugin for more details.
4
- lazy val scalaVersions = Seq (" 2.12.2 " )
4
+ lazy val scalaVersions = Seq (" 2.12.13 " )
5
5
lazy val root = project
6
6
.in(file(" ." ))
7
7
.settings(
8
- name := " dotty -template" ,
8
+ name := " scala3 -template" ,
9
9
Test / test := {
10
10
val _ = (Test / g8Test).toTask(" " ).value
11
11
},
@@ -14,13 +14,12 @@ lazy val root = project
14
14
crossScalaVersions := scalaVersions
15
15
)
16
16
17
- ThisBuild / githubWorkflowJavaVersions
:= Seq (
" [email protected] .0-275 " ,
" [email protected] .0-9 " ,
" [email protected] .0-1 " )
17
+ ThisBuild / githubWorkflowJavaVersions
:= Seq (
" [email protected] " ,
" [email protected] " ,
" [email protected] " )
18
18
ThisBuild / githubWorkflowScalaVersions := scalaVersions
19
19
ThisBuild / githubWorkflowBuildPostamble := Seq (
20
20
// This runs the template with the default parameters, and runs test within the templated app.
21
21
WorkflowStep .Run (List (" sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M test" )),
22
-
23
- WorkflowStep .Run (List (" pushd target/sbt-test/dotty-template/scripted && sbt run test && popd" )),
22
+ WorkflowStep .Run (List (" pushd target/sbt-test/scala3-template/scripted && sbt run test && popd" )),
24
23
)
25
24
ThisBuild / githubWorkflowPublishTargetBranches := Nil
26
25
Global / onChangedBuildSource := ReloadOnSourceChanges
0 commit comments