-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
140 lines (129 loc) · 4.19 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
lazy val V = _root_.scalafix.sbt.BuildInfo
lazy val rulesCrossVersions = Seq(V.scala213, V.scala212)
lazy val scala3Version = "3.3.4"
inThisBuild(
List(
organization := "software.purpledragon",
homepage := Some(url("https://github.com/stringbean/scalafix-rules")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"),
),
developers := List(
Developer("stringbean", "Michael Stringer", "@the_stringbean", url("https://github.com/stringbean")),
),
organizationName := "Michael Stringer",
organizationHomepage := Some(url("https://purpledragon.software")),
startYear := Some(2023),
scmInfo := Some(
ScmInfo(
url("https://github.com/stringbean/scalafix-rules"),
"scm:git:git@github.com:stringbean/scalafix-rules.git")),
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision,
versionScheme := Some("semver-spec"),
),
)
lazy val `scalafix-rules` = (project in file("."))
.aggregate(
(rules.projectRefs ++
input.projectRefs ++
output.projectRefs ++
tests.projectRefs) *,
)
.settings(
publish / skip := true,
)
lazy val rules = projectMatrix
.settings(
moduleName := "scalafix-rules",
libraryDependencies ++= Seq(
"ch.epfl.scala" %% "scalafix-core" % V.scalafixVersion,
),
scalacOptions += "-Xsource:3",
publishTo := sonatypePublishToBundle.value,
)
.defaultAxes(VirtualAxis.jvm)
.jvmPlatform(rulesCrossVersions)
lazy val input = projectMatrix
.settings(
publish / skip := true,
libraryDependencies ++= Seq(
"commons-lang" % "commons-lang" % "2.6",
"org.apache.commons" % "commons-lang3" % "3.13.0",
),
)
.defaultAxes(VirtualAxis.jvm)
.jvmPlatform(scalaVersions = rulesCrossVersions :+ scala3Version)
.disablePlugins(HeaderPlugin, ScalafmtPlugin)
lazy val output = projectMatrix
.settings(
publish / skip := true,
libraryDependencies ++= Seq(
"commons-lang" % "commons-lang" % "2.6",
"org.apache.commons" % "commons-lang3" % "3.13.0",
),
)
.defaultAxes(VirtualAxis.jvm)
.jvmPlatform(scalaVersions = rulesCrossVersions :+ scala3Version)
.disablePlugins(HeaderPlugin, ScalafmtPlugin)
lazy val testsAggregate = Project("tests", file("target/testsAggregate"))
.aggregate(tests.projectRefs *)
.settings(
publish / skip := true,
)
lazy val tests = projectMatrix
.settings(
publish / skip := true,
scalafixTestkitOutputSourceDirectories :=
TargetAxis
.resolve(output, Compile / unmanagedSourceDirectories)
.value,
scalafixTestkitInputSourceDirectories :=
TargetAxis
.resolve(input, Compile / unmanagedSourceDirectories)
.value,
scalafixTestkitInputClasspath :=
TargetAxis.resolve(input, Compile / fullClasspath).value,
scalafixTestkitInputScalacOptions :=
TargetAxis.resolve(input, Compile / scalacOptions).value,
scalafixTestkitInputScalaVersion :=
TargetAxis.resolve(input, Compile / scalaVersion).value,
)
.defaultAxes(
(rulesCrossVersions.map(VirtualAxis.scalaABIVersion) :+ VirtualAxis.jvm) *,
)
.jvmPlatform(
scalaVersions = Seq(V.scala212),
axisValues = Seq(TargetAxis(scala3Version)),
settings = Seq(),
)
.jvmPlatform(
scalaVersions = Seq(V.scala213),
axisValues = Seq(TargetAxis(V.scala213)),
settings = Seq(),
)
.jvmPlatform(
scalaVersions = Seq(V.scala212),
axisValues = Seq(TargetAxis(V.scala212)),
settings = Seq(),
)
.dependsOn(rules)
.enablePlugins(ScalafixTestkitPlugin)
import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations.*
ThisBuild / releasePublishArtifactsAction := PgpKeys.publishSigned.value
ThisBuild / releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
releaseStepCommand("scalafmtCheckAll"),
releaseStepCommand("headerCheckAll"),
setReleaseVersion,
commitReleaseVersion,
tagRelease,
publishArtifacts,
releaseStepCommand("sonatypeBundleRelease"),
setNextVersion,
commitNextVersion,
pushChanges,
)