@@ -10,20 +10,17 @@ val allScalaVersions = scala2Versions :+ scala3Version
10
10
ThisBuild / scalaVersion := scala213
11
11
ThisBuild / crossScalaVersions := allScalaVersions
12
12
13
- addCommandAlias(" ci-test" , " scalafmtCheckAll; scalafmtSbtCheck; mdoc; testCovered " )
13
+ addCommandAlias(" ci-test" , " scalafmtCheckAll; scalafmtSbtCheck; mdoc; ++test " )
14
14
addCommandAlias(" ci-docs" , " github; mdoc; headerCreateAll; publishMicrosite" )
15
15
addCommandAlias(" ci-publish" , " github; ci-release" )
16
16
17
- coverageScalacPluginVersion := " 1.4.8" // needed for scala 2.12.14
18
-
19
17
publish / skip := true
20
18
21
19
lazy val github4s = project
22
20
.settings(coreDeps : _* )
23
21
.settings(
24
22
// Increase number of inlines, needed for circe semiauto derivation
25
- scalacOptions ++= on(3 , 9 )(Seq (" -Xmax-inlines" , " 20" )).value.flatten,
26
- coverageScalacPluginVersion := " 1.4.8" // needed for scala 2.12.14
23
+ scalacOptions ++= on(3 , 9 )(Seq (" -Xmax-inlines" , " 20" )).value.flatten
27
24
)
28
25
29
26
// ////////
@@ -37,14 +34,8 @@ lazy val microsite: Project = project
37
34
.settings(micrositeSettings : _* )
38
35
.settings(publish / skip := true )
39
36
.settings(ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(github4s, microsite))
40
- .settings(
41
- coverageScalacPluginVersion := " 1.4.8" // needed for scala 2.12.14
42
- )
43
37
44
38
lazy val documentation = project
45
39
.enablePlugins(MdocPlugin )
46
40
.settings(mdocOut := file(" ." ))
47
41
.settings(publish / skip := true )
48
- .settings(
49
- coverageScalacPluginVersion := " 1.4.8" // needed for scala 2.12.14
50
- )
0 commit comments