forked from typelevel/algebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
236 lines (209 loc) · 7.78 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
import sbtrelease.Utilities._
import sbtunidoc.Plugin.UnidocKeys._
import ReleaseTransformations._
import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
import com.typesafe.tools.mima.plugin.MimaKeys.previousArtifact
lazy val buildSettings = Seq(
organization := "org.typelevel",
scalaVersion := "2.11.8",
crossScalaVersions := Seq("2.10.6", "2.11.8")
)
lazy val commonSettings = Seq(
scalacOptions ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
//"-Ywarn-value-discard", // fails with @sp on Unit
"-Xfuture"
) ++ (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 11)) => Seq("-Ywarn-unused-import")
case _ => Seq.empty
}),
resolvers += Resolver.sonatypeRepo("public"),
scalacOptions in (Compile, console) ~= (_ filterNot (_ == "-Ywarn-unused-import")),
scalacOptions in (Test, console) := (scalacOptions in (Compile, console)).value,
scalaJSStage in Global := FastOptStage,
scalaJSUseRhino := false,
requiresDOM := false,
jsEnv := NodeJSEnv().value,
fork := false,
parallelExecution in Test := false
)
lazy val algebraSettings = buildSettings ++ commonSettings ++ publishSettings
lazy val docSettings = Seq(
autoAPIMappings := true,
unidocProjectFilter in (ScalaUnidoc, unidoc) := inProjects(coreJVM, stdJVM, lawsJVM),
site.addMappingsToSiteDir(mappings in (ScalaUnidoc, packageDoc), "api"),
git.remoteRepo := "[email protected]:non/algebra.git"
)
lazy val aggregate = project.in(file("."))
.settings(algebraSettings: _*)
.settings(noPublishSettings: _*)
.settings(unidocSettings: _*)
.settings(site.settings: _*)
.settings(ghpages.settings: _*)
.settings(docSettings: _*)
.aggregate(coreJVM, ringJVM, latticeJVM, lawsJVM, macrosJVM, stdJVM)
.dependsOn(coreJVM, ringJVM, latticeJVM, lawsJVM, macrosJVM, stdJVM)
.aggregate(coreJS, ringJS, latticeJS, lawsJS, macrosJS, stdJS)
.dependsOn(coreJS, ringJS, latticeJS, lawsJS, macrosJS, stdJS)
lazy val core = crossProject
.crossType(CrossType.Pure)
.settings(moduleName := "algebra")
.settings(mimaDefaultSettings: _*)
// TODO: update this to a published stable version, e.g. 0.4.0
//.settings(previousArtifact := Some("org.spire-math" %% "algebra" % "0.3.1"))
.settings(libraryDependencies += "org.typelevel" %%% "cats-kernel" % "0.6.0-M2")
.settings(algebraSettings: _*)
lazy val coreJVM = core.jvm
lazy val coreJS = core.js
lazy val ring = crossProject
.crossType(CrossType.Pure)
.dependsOn(core)
.settings(moduleName := "algebra-ring")
.settings(mimaDefaultSettings: _*)
// TODO: update this to a published stable version, e.g. 0.4.0
//.settings(previousArtifact := Some("org.spire-math" %% "algebra-ring" % "0.3.1"))
.settings(algebraSettings: _*)
lazy val ringJVM = ring.jvm
lazy val ringJS = ring.js
lazy val lattice = crossProject
.crossType(CrossType.Pure)
.dependsOn(core, ring)
.settings(moduleName := "algebra-lattice")
.settings(mimaDefaultSettings: _*)
// TODO: update this to a published stable version, e.g. 0.4.0
//.settings(previousArtifact := Some("org.spire-math" %% "algebra" % "0.3.1"))
.settings(algebraSettings: _*)
lazy val latticeJVM = lattice.jvm
lazy val latticeJS = lattice.js
lazy val std = crossProject
.crossType(CrossType.Pure)
.dependsOn(core, ring, lattice)
.settings(moduleName := "algebra-std")
.settings(algebraSettings: _*)
.settings(sourceGenerators in Compile <+= (sourceManaged in Compile).map(Boilerplate.gen))
lazy val stdJVM = std.jvm
lazy val stdJS = std.js
lazy val laws = crossProject
.dependsOn(core, ring, lattice, std, macros)
.settings(moduleName := "algebra-laws")
.settings(algebraSettings: _*)
.settings(libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-kernel-laws" % "0.6.0-M2",
"org.scalacheck" %%% "scalacheck" % "1.12.4",
"org.typelevel" %%% "discipline" % "0.4",
"org.scalatest" %%% "scalatest" % "3.0.0-M7" % "test"))
lazy val lawsJVM = laws.jvm
lazy val lawsJS = laws.js
lazy val macros = crossProject.crossType(CrossType.Pure)
.settings(moduleName := "algebra-macros")
.settings(algebraSettings: _*)
.settings(crossVersionSharedSources:_*)
.settings(scalaMacroDependencies:_*)
lazy val macrosJVM = macros.jvm
lazy val macrosJS = macros.js
lazy val publishSettings = Seq(
homepage := Some(url("http://spire-math.org")),
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")),
autoAPIMappings := true,
apiURL := Some(url("https://non.github.io/algebra/api/")),
releaseCrossBuild := true,
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := Function.const(false),
publishTo <<= (version).apply { v =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
pomExtra := (
<scm>
<url>[email protected]:non/algebra.git</url>
<connection>scm:git:[email protected]:non/algebra.git</connection>
</scm>
<developers>
<developer>
<id>johnynek</id>
<name>P. Oscar Boykin</name>
<url>https://github.com/johnynek/</url>
</developer>
<developer>
<id>avibryant</id>
<name>Avi Bryant</name>
<url>https://github.com/avibryant/</url>
</developer>
<developer>
<id>non</id>
<name>Erik Osheim</name>
<url>http://github.com/non/</url>
</developer>
<developer>
<id>tixxit</id>
<name>Tom Switzer</name>
<url>http://github.com/tixxit/</url>
</developer>
</developers>
),
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
publishArtifacts,
setNextVersion,
commitNextVersion,
ReleaseStep(action = Command.process("sonatypeReleaseAll", _)),
pushChanges
)
)
addCommandAlias("validate", ";compile;test;unidoc")
// Base Build Settings
lazy val noPublishSettings = Seq(
publish := (),
publishLocal := (),
publishArtifact := false
)
def crossVersionSharedSources() =
Seq(Compile, Test).map { sc =>
(unmanagedSourceDirectories in sc) ++= {
(unmanagedSourceDirectories in sc ).value.map {
dir:File => new File(dir.getPath + "_" + scalaBinaryVersion.value)
}
}
}
lazy val scalaMacroDependencies: Seq[Setting[_]] = Seq(
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",
libraryDependencies ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
// if scala 2.11+ is used, quasiquotes are merged into scala-reflect
case Some((2, scalaMajor)) if scalaMajor >= 11 => Seq()
// in Scala 2.10, quasiquotes are provided by macro paradise
case Some((2, 10)) =>
Seq(
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0-M5" cross CrossVersion.full),
"org.scalamacros" %% "quasiquotes" % "2.1.0-M5" cross CrossVersion.binary
)
}
}
)
addCommandAlias("gitSnapshots", ";set version in ThisBuild := git.gitDescribedVersion.value.get + \"-SNAPSHOT\"")
// For Travis CI - see http://www.cakesolutions.net/teamblogs/publishing-artefacts-to-oss-sonatype-nexus-using-sbt-and-travis-ci
credentials ++= (for {
username <- Option(System.getenv().get("SONATYPE_USERNAME"))
password <- Option(System.getenv().get("SONATYPE_PASSWORD"))
} yield Credentials("Sonatype Nexus Repository Manager", "oss.sonatype.org", username, password)).toSeq