-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
166 lines (152 loc) · 4.45 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
import ReleaseTransformations._
lazy val buildSettings = Seq(
organization := "io.expressier",
scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.10.5", "2.11.7")
)
lazy val compilerOptions = Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-unchecked",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Xfuture"
)
lazy val baseSettings = Seq(
scalacOptions ++= compilerOptions ++ (
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 11)) => Seq("-Ywarn-unused-import")
case _ => Nil
}
),
scalacOptions in (Compile, console) := compilerOptions,
scalacOptions in (Compile, test) := compilerOptions,
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
),
ScoverageSbtPlugin.ScoverageKeys.coverageHighlighting := (
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 10)) => false
case _ => true
}
),
/** We need the Macro Paradise plugin both to support the macro
* annotations used in the public type provider implementation and to
* allow us to use quasiquotes in both implementations. The anonymous
* type providers could easily (although much less concisely) be
* implemented without the plugin.
*/
addCompilerPlugin(paradiseDependency)
)
lazy val allSettings = buildSettings ++ baseSettings ++ publishSettings
lazy val root = project.in(file("."))
.settings(allSettings)
.settings(noPublishSettings)
.settings(
initialCommands in console :=
"""
|import io.expressier._
""".stripMargin
)
.aggregate(core, coreJS)
.dependsOn(core)
lazy val coreBase = crossProject.in(file("core"))
.settings(
description := "expressier core",
moduleName := "expressier-core",
name := "core"
)
.settings(allSettings: _*)
.settings(macroProjectSettings: _*)
.settings(
libraryDependencies ++= Seq(
"com.chuusai" %%% "shapeless" % "2.2.5",
"org.typelevel" %%% "macro-compat" % "1.0.2",
"org.scalatest" %%% "scalatest" % "3.0.0-M7" % "test"
)
)
.settings(macroProjectSettings: _*)
.jvmConfigure(_.copy(id = "core"))
.jsConfigure(_.copy(id = "coreJS"))
lazy val core = coreBase.jvm
lazy val coreJS = coreBase.js
lazy val paradiseDependency =
"org.scalamacros" % "paradise" % "2.1.0-M5" cross CrossVersion.full
lazy val macroProjectSettings = Seq(
libraryDependencies <+= (scalaVersion)(
"org.scala-lang" % "scala-reflect" % _
),
libraryDependencies ++= (
if (scalaVersion.value.startsWith("2.10")) List(paradiseDependency) else Nil
)
)
lazy val publishSettings = Seq(
releaseCrossBuild := true,
releasePublishArtifactsAction := PgpKeys.publishSigned.value,
homepage := Some(url("https://github.com/travisbrown/expressier")),
licenses := Seq("Apache 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := { _ => false },
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
autoAPIMappings := true,
apiURL := Some(url("https://travisbrown.github.io/expressier/api/")),
scmInfo := Some(
ScmInfo(
url("https://github.com/travisbrown/expressier"),
"scm:git:git@github.com:travisbrown/expressier.git"
)
),
pomExtra := (
<developers>
<developer>
<id>travisbrown</id>
<name>Travis Brown</name>
<url>https://twitter.com/travisbrown</url>
</developer>
</developers>
)
)
lazy val noPublishSettings = Seq(
publish := (),
publishLocal := (),
publishArtifact := false
)
lazy val sharedReleaseProcess = Seq(
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
runTest,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
publishArtifacts,
setNextVersion,
commitNextVersion,
ReleaseStep(action = Command.process("sonatypeReleaseAll", _)),
pushChanges
)
)
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