-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
153 lines (140 loc) · 4.11 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
141
142
143
144
145
146
147
148
149
150
151
152
153
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}
import ReleaseTransformations._
organization in ThisBuild := "com.github.takayahilton"
onChangedBuildSource in Global := ReloadOnSourceChanges
val Scala211 = "2.11.12"
val Scala212 = "2.12.15"
val Scala213 = "2.13.8"
lazy val root = project
.in(file("."))
.settings(moduleName := "root")
.settings(publishingSettings)
.settings(noPublishSettings)
.aggregate(sql_formatterJVM, sql_formatterJS)
lazy val sql_formatter = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Full)
.in(file("."))
.settings(
moduleName := "sql-formatter",
sharedSettings,
publishingSettings,
scalacOptions ++= commonScalacOptions.value,
scalaVersion := Scala211,
crossScalaVersions := Seq(Scala211, Scala212, Scala213)
)
.jsSettings(
//scalac-scoverage-plugin Scala.js 1.0 is not yet released.
coverageEnabled := false
)
.nativeSettings(
scalaVersion := Scala211,
crossScalaVersions := Seq(Scala211),
coverageEnabled := false,
Test / nativeLinkStubs := true,
Compile / doc / scalacOptions -= "-Xfatal-warnings"
)
lazy val sql_formatterJVM = sql_formatter.jvm
lazy val sql_formatterJS = sql_formatter.js
lazy val sql_formatterNative = sql_formatter.native
lazy val commonScalacOptions = Def.setting {
Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:_",
"-unchecked",
"-Xlint",
"-Xlint:-nullary-unit",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard"
) ++ {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, v)) if v >= 13 =>
Seq(
"-Ymacro-annotations"
)
case _ =>
Seq(
"-Xfatal-warnings", // doesn't work with SN, so removed in .nativeSettings (see: https://github.com/scala-native/scala-native/pull/1752)
"-Yno-adapted-args",
"-Ypartial-unification",
"-Xfuture"
)
}
}
}
wartremoverErrors in (Compile, compile) ++= Seq(
Wart.ArrayEquals,
Wart.AnyVal,
Wart.DefaultArguments,
Wart.Enumeration,
Wart.ExplicitImplicitTypes,
Wart.FinalCaseClass,
Wart.FinalVal,
Wart.LeakingSealed,
Wart.NonUnitStatements,
Wart.Serializable,
Wart.TraversableOps
)
lazy val sharedSettings = Seq(
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % "3.2.12" % Test
)
) ++ Seq(Compile, Test).map(scalacOptions in (_, console) -= "-Xfatal-warnings")
lazy val publishingSettings = Seq(
name := "sql-formatter",
description := "SQL Formatter for Scala",
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := { _ => false },
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
),
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")),
homepage := Some(
url("https://github.com/takayahilton/sql-formatter")
),
scmInfo := Some(
ScmInfo(
url("https://github.com/takayahilton/sql-formatter"),
"scm:[email protected]:takayahilton/sql-formatter.git"
)
),
developers := List(
Developer(
id = "takayahilton",
name = "Tanaka Takaya",
email = "[email protected]",
url = url("https://github.com/takayahilton")
)
)
) ++ sharedReleaseProcess
lazy val sharedReleaseProcess = Seq(
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
releaseStepCommandAndRemaining("check"),
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
releaseStepCommandAndRemaining("+publishSigned"),
releaseStepCommandAndRemaining(s";++${Scala211}!;sql_formatterNative/publishSigned"),
setNextVersion,
commitNextVersion,
releaseStepCommand("sonatypeReleaseAll"),
pushChanges
)
)
lazy val noPublishSettings = Seq(
publish := {},
publishLocal := {},
publishArtifact := false
)
addCommandAlias("check", ";scalafmtCheckAll;scalafmtSbtCheck")
addCommandAlias("fmt", ";scalafmtAll;scalafmtSbt")