-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
107 lines (95 loc) · 3.37 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
ThisBuild / tlBaseVersion := "0.3"
ThisBuild / organization := "org.polyvariant"
ThisBuild / organizationName := "Polyvariant"
ThisBuild / startYear := Some(2020)
ThisBuild / licenses := Seq(License.Apache2)
ThisBuild / developers := List(
tlGitHubDev("kubukoz", "Jakub Kozłowski"),
tlGitHubDev("majk-p", "Michał Pawlik")
)
ThisBuild / tlSonatypeUseLegacyHost := false
Global / onChangedBuildSource := ReloadOnSourceChanges
ThisBuild / tlFatalWarnings := false
ThisBuild / tlFatalWarningsInCi := false
Global / onChangedBuildSource := ReloadOnSourceChanges
// for dottydoc
ThisBuild / resolvers += Resolver.JCenterRepository
ThisBuild / scalaVersion := "3.3.0"
ThisBuild / crossScalaVersions := IO.read(file("scala-versions")).split("\n").map(_.trim)
ThisBuild / githubWorkflowEnv ++= List(
"PGP_PASSPHRASE",
"PGP_SECRET",
"SONATYPE_PASSWORD",
"SONATYPE_USERNAME"
).map { envKey =>
envKey -> s"$${{ secrets.$envKey }}"
}.toMap
ThisBuild / githubWorkflowPublishTargetBranches := List(RefPredicate.StartsWith(Ref.Tag("v")))
ThisBuild / githubWorkflowGeneratedCI ~= {
_.map {
case job if job.id == "build" =>
job.copy(
steps = job.steps.map {
case step: WorkflowStep.Sbt if step.name == Some("Check that workflows are up to date") =>
step.copy(commands = List("githubWorkflowCheck", "mergifyCheck", "readmeCheck"))
case step => step
}
)
case job => job
}
}
val commonSettings = Seq(
scalacOptions --= Seq("-source:3.0-migration"),
mimaPreviousArtifacts := Set.empty,
// We don't need KP
libraryDependencies -= compilerPlugin("org.typelevel" % "kind-projector" % "0.13.2" cross CrossVersion.full)
)
val plugin = project
.settings(
name := "better-tostring",
commonSettings,
crossTarget := target.value / s"scala-${scalaVersion.value}", // workaround for https://github.com/sbt/sbt/issues/5097
crossVersion := CrossVersion.full,
libraryDependencies ++= Seq(
scalaOrganization.value % (
if (scalaVersion.value.startsWith("3"))
s"scala3-compiler_3"
else "scala-compiler"
) % scalaVersion.value
),
// 3.3.x -> "scala-3.3.x"
Compile / unmanagedSourceDirectories += {
sourceDirectory.value / "main" / s"scala-${scalaVersion.value.split("\\.").take(2).mkString(".")}.x"
}
)
.enablePlugins(BackpublishPlugin)
val tests = project
.settings(
commonSettings,
scalacOptions ++= {
val jar = (plugin / Compile / packageBin).value
Seq(
s"-Xplugin:${jar.getAbsolutePath}",
s"-Xplugin-require:better-tostring",
s"-Jdummy=${jar.lastModified}"
) // borrowed from bm4
},
libraryDependencies ++= Seq("org.scalameta" %% "munit" % "0.7.29" % Test),
buildInfoKeys ++= Seq(scalaVersion),
buildInfoPackage := "b2s.buildinfo",
Compile / doc / sources := Seq()
)
.enablePlugins(BuildInfoPlugin, NoPublishPlugin)
val betterToString =
project
.in(file("."))
.settings(name := "root")
.settings(
commonSettings,
(publish / skip) := true,
addCommandAlias("generateAll", List("githubWorkflowGenerate", "mergifyWrite", "readmeWrite").mkString(";"))
)
.aggregate(plugin, tests)
.enablePlugins(NoPublishPlugin)
.enablePlugins(MergifyPlugin)
.enablePlugins(ReadmePlugin)