-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathbuild.sbt
402 lines (351 loc) · 10.7 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
import org.scalajs.sbtplugin.cross.CrossProject
/// variables
val groupId = "eu.timepit"
val projectName = "refined"
val rootPkg = s"$groupId.$projectName"
val gitHubOwner = "fthomas"
val gitPubUrl = s"https://github.com/$gitHubOwner/$projectName.git"
val gitDevUrl = s"git@github.com:$gitHubOwner/$projectName.git"
val macroCompatVersion = "1.1.1"
val macroParadiseVersion = "2.1.0"
val shapelessVersion = "2.3.2"
val scalaCheckVersion = "1.13.4"
val scalaXmlVersion = "1.0.6"
val scalazVersion = "7.2.8"
val scodecVersion = "1.10.3"
val pureconfigVersion = "0.5.1"
// needed for tests with Scala 2.10
val macroParadise = compilerPlugin(
"org.scalamacros" % "paradise" % macroParadiseVersion % Test cross CrossVersion.full)
val allSubprojects =
Seq("core", "eval", "scalacheck", "scalaz", "scodec", "pureconfig")
val allSubprojectsJVM = allSubprojects.map(_ + "JVM")
val allSubprojectsJS = {
val jvmOnlySubprojects = Seq("pureconfig")
(allSubprojects diff jvmOnlySubprojects).map(_ + "JS")
}
/// projects
lazy val root = project
.in(file("."))
.aggregate(coreJVM,
coreJS,
docs,
evalJVM,
evalJS,
scalacheckJVM,
scalacheckJS,
scalazJVM,
scalazJS,
scodecJVM,
scodecJS,
pureconfigJVM)
.settings(commonSettings)
.settings(noPublishSettings)
.settings(releaseSettings)
.settings(
console := console.in(coreJVM, Compile).value,
console.in(Test) := console.in(coreJVM, Test).value,
parallelExecution in Test in ThisBuild := false
)
lazy val core = crossProject
.configureCross(moduleCrossConfig("core"))
.enablePlugins(BuildInfoPlugin)
.settings(moduleName := projectName)
.settings(siteSettings: _*)
.settings(
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided,
"org.typelevel" %%% "macro-compat" % macroCompatVersion,
"com.chuusai" %%% "shapeless" % shapelessVersion,
"org.scalacheck" %%% "scalacheck" % scalaCheckVersion % Test,
macroParadise
),
libraryDependencies ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 10)) => Seq.empty
case _ =>
Seq("org.scala-lang.modules" %% "scala-xml" % scalaXmlVersion)
}
},
initialCommands += s"""
import shapeless.tag.@@
""",
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
buildInfoPackage := s"$rootPkg.internal"
)
lazy val coreJVM = core.jvm
lazy val coreJS = core.js
lazy val docs = project
.configure(moduleConfig("docs"))
.dependsOn(coreJVM)
.settings(noPublishSettings)
.settings(tutSettings)
.settings(
tutScalacOptions := scalacOptions.value,
tutSourceDirectory := baseDirectory.value / "src",
tutTargetDirectory := baseDirectory.value
)
lazy val eval = crossProject
.configureCross(moduleCrossConfig("eval"))
.dependsOn(core % "compile->compile;test->test")
.settings(
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value
)
lazy val evalJVM = eval.jvm
lazy val evalJS = eval.js
lazy val scalacheck = crossProject
.configureCross(moduleCrossConfig("scalacheck"))
.dependsOn(core % "compile->compile;test->test")
.settings(
libraryDependencies += "org.scalacheck" %%% "scalacheck" % scalaCheckVersion,
initialCommands += s"""
import org.scalacheck.Arbitrary
"""
)
lazy val scalacheckJVM = scalacheck.jvm
lazy val scalacheckJS = scalacheck.js
lazy val scalaz = crossProject
.configureCross(moduleCrossConfig("scalaz"))
.dependsOn(core % "compile->compile;test->test")
.settings(
libraryDependencies += "org.scalaz" %%% "scalaz-core" % scalazVersion,
initialCommands += s"""
import $rootPkg.scalaz._
import $rootPkg.scalaz.auto._
import _root_.scalaz.@@
"""
)
lazy val scalazJVM = scalaz.jvm
lazy val scalazJS = scalaz.js
lazy val scodec = crossProject
.configureCross(moduleCrossConfig("scodec"))
.dependsOn(core % "compile->compile;test->test")
.settings(
libraryDependencies ++= Seq(
"org.scodec" %%% "scodec-core" % scodecVersion,
macroParadise
)
)
lazy val scodecJVM = scodec.jvm
lazy val scodecJS = scodec.js
lazy val pureconfig = crossProject
.configureCross(moduleCrossConfig("pureconfig"))
.dependsOn(core % "compile->compile;test->test")
.settings(
libraryDependencies ++= Seq(
"com.github.melrief" %% "pureconfig" % pureconfigVersion,
macroParadise
)
)
lazy val pureconfigJVM = pureconfig.jvm
/// settings
lazy val commonSettings = Def.settings(
compileSettings,
metadataSettings,
myDoctestSettings,
scaladocSettings,
styleSettings,
initialCommands := s"""
import $rootPkg._
import $rootPkg.api._
import $rootPkg.api.Inference.==>
import $rootPkg.api.RefType.ops._
import $rootPkg.auto._
import $rootPkg.boolean._
import $rootPkg.char._
import $rootPkg.collection._
import $rootPkg.eval._
import $rootPkg.generic._
import $rootPkg.numeric._
import $rootPkg.string._
import $rootPkg.types.all._
import shapeless.{ ::, HList, HNil }
import shapeless.nat._
"""
)
def moduleConfig(name: String): Project => Project =
_.in(file(s"modules/$name"))
.settings(moduleName := s"$projectName-$name")
.settings(commonSettings)
def moduleCrossConfig(name: String): CrossProject => CrossProject =
_.in(file(s"modules/$name"))
.settings(moduleName := s"$projectName-$name")
.settings(moduleCrossSettings)
.jvmSettings(moduleJvmSettings)
.jsSettings(moduleJsSettings)
lazy val moduleCrossSettings = Def.settings(
commonSettings,
publishSettings,
releaseSettings
)
lazy val moduleJvmSettings = Def.settings(
mimaPreviousArtifacts := {
val hasNoPredecessor = unreleasedModules.value contains moduleName.value
latestVersionInSeries.value match {
case Some(latest) if publishArtifact.value && !hasNoPredecessor => {
Set(groupId %% moduleName.value % latest)
}
case other => Set.empty
}
},
mimaBinaryIssueFilters ++= {
import com.typesafe.tools.mima.core._
import com.typesafe.tools.mima.core.ProblemFilters._
Seq(
exclude[DirectMissingMethodProblem](
"eu.timepit.refined.internal.RefinePartiallyApplied.force"))
}
)
lazy val moduleJsSettings = Def.settings(
doctestGenTests := Seq.empty
)
lazy val metadataSettings = Def.settings(
name := projectName,
description := "Simple refinement types for Scala",
organization := groupId,
homepage := Some(url(s"https://github.com/$gitHubOwner/$projectName")),
startYear := Some(2015),
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")),
scmInfo := Some(ScmInfo(homepage.value.get, s"scm:git:$gitPubUrl", Some(s"scm:git:$gitDevUrl"))),
developers := List(
Developer(id = "fthomas",
name = "Frank S. Thomas",
email = "",
url("https://github.com/fthomas")))
)
lazy val compileSettings = Def.settings(
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:experimental.macros",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Xfuture",
"-Xlint",
//"-Xlog-implicits",
"-Yno-adapted-args",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard"
),
wartremoverErrors in (Compile, compile) ++= Warts.unsafe diff Seq(
Wart.Any,
Wart.AsInstanceOf,
Wart.NonUnitStatements,
Wart.Null,
Wart.Throw
)
)
lazy val scaladocSettings = Def.settings(
scalacOptions in (Compile, doc) ++= Seq(
//"-diagrams",
"-diagrams-debug",
"-doc-source-url",
scmInfo.value.get.browseUrl + "/tree/master€{FILE_PATH}.scala",
"-sourcepath",
baseDirectory.in(LocalRootProject).value.getAbsolutePath
),
autoAPIMappings := true,
apiURL := Some(url(s"http://$gitHubOwner.github.io/$projectName/latest/api/"))
)
lazy val publishSettings = Def.settings(
publishMavenStyle := true,
pomIncludeRepository := { _ =>
false
}
)
lazy val noPublishSettings = Def.settings(
publish := (),
publishLocal := (),
publishArtifact := false
)
lazy val releaseSettings = {
import ReleaseTransformations._
lazy val addReleaseDateToReleaseNotes: ReleaseStep = { st: State =>
val extracted = Project.extract(st)
val newVersion = extracted.get(version)
val date = "date +%Y-%m-%d".!!.trim
val footer = s"\nReleased on $date\n"
val notes = s"notes/$newVersion.markdown"
IO.append(file(notes), footer)
s"git add $notes" !! st.log
st
}
lazy val updateVersionInReadme: ReleaseStep = { st: State =>
val extracted = Project.extract(st)
val newVersion = extracted.get(version)
val oldVersion = extracted.get(latestVersion)
val readme = "README.md"
val oldContent = IO.read(file(readme))
val newContent = oldContent.replaceAll(oldVersion, newVersion)
IO.write(file(readme), newContent)
s"git add $readme" !! st.log
st
}
Def.settings(
releaseCrossBuild := true,
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
releaseVcsSign := true,
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
setReleaseVersion,
addReleaseDateToReleaseNotes,
updateVersionInReadme,
commitReleaseVersion,
tagRelease,
publishArtifacts,
releaseStepTask(GhPagesKeys.pushSite in LocalProject("coreJVM")),
setLatestVersion,
setNextVersion,
commitNextVersion,
pushChanges
)
)
}
lazy val siteSettings = Def.settings(
site.settings,
site.includeScaladoc(),
ghpages.settings,
git.remoteRepo := gitDevUrl
)
lazy val myDoctestSettings = Def.settings(
doctestWithDependencies := false
)
lazy val styleSettings = Def.settings(
// workaround for https://github.com/scalastyle/scalastyle-sbt-plugin/issues/47
scalastyleSources in Compile :=
(unmanagedSourceDirectories in Compile).value ++
(unmanagedSourceDirectories in Test).value
)
/// commands
def addCommandsAlias(name: String, cmds: Seq[String]) =
addCommandAlias(name, cmds.mkString(";", ";", ""))
addCommandsAlias("syncMavenCentral", allSubprojectsJVM.map(_ + "/bintraySyncMavenCentral"))
addCommandsAlias("testJS", allSubprojectsJS.map(_ + "/test"))
addCommandsAlias("testJVM", allSubprojectsJVM.map(_ + "/test"))
addCommandsAlias(
"validate",
Seq(
"clean",
"scalafmtTest",
"scalastyle",
"test:scalastyle",
"mimaReportBinaryIssues",
"testJS",
"coverage",
"testJVM",
"coverageReport",
"coverageOff",
"doc",
"docs/tut",
"package",
"packageSrc"
)
)