-
Notifications
You must be signed in to change notification settings - Fork 101
/
build.sbt
131 lines (120 loc) · 4.6 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
val scalaJSVersion = sys.env.getOrElse("SCALAJS_VERSION", "1.3.0")
lazy val `scalajs-bundler-linker` =
project.in(file("scalajs-bundler-linker"))
.settings(
scalaVersion := "2.12.11",
libraryDependencies += "org.scala-js" %% "scalajs-linker" % scalaJSVersion
)
val `sbt-scalajs-bundler` =
project.in(file("sbt-scalajs-bundler"))
.enablePlugins(SbtPlugin, BuildInfoPlugin)
.settings(commonSettings)
.settings(
description := "Module bundler for Scala.js projects",
libraryDependencies += "com.google.jimfs" % "jimfs" % "1.2",
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.9.4",
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion),
buildInfoKeys := Seq[BuildInfoKey](version),
buildInfoPackage := "scalajsbundler.sbtplugin.internal",
// When supported, add: buildInfoOptions += sbtbuildinfo.BuildInfoOption.PackagePrivate
scriptedDependencies := {
val () = scriptedDependencies.value
val () = publishLocal.value
val () = (`scalajs-bundler-linker` / publishLocal).value
},
)
val `sbt-web-scalajs-bundler` =
project.in(file("sbt-web-scalajs-bundler"))
.enablePlugins(SbtPlugin)
.settings(commonSettings)
.settings(
// sbt-web-scalajs does not support sbt 1.2.x
scriptedDependencies := {
val () = scriptedDependencies.value
val () = publishLocal.value
val () = (`sbt-scalajs-bundler` / publishLocal).value
val () = (`scalajs-bundler-linker` / publishLocal).value
},
description := "Module bundler for Scala.js projects (integration with sbt-web-scalajs)",
addSbtPlugin("com.vmunier" % "sbt-web-scalajs" % "1.1.0")
)
.dependsOn(`sbt-scalajs-bundler`)
// Dummy project that exists just for the purpose of aggregating the two sbt
// plugins. I can not do that in the `doc` project below because the
// scalaVersion is not compatible.
val apiDoc =
project.in(file("api-doc"))
.enablePlugins(ScalaUnidocPlugin)
.settings(noPublishSettings: _*)
.settings(
(ScalaUnidoc / unidoc / scalacOptions) ++= Seq(
"-groups",
"-doc-source-url", s"https://github.com/scalacenter/scalajs-bundler/blob/v${version.value}€{FILE_PATH}.scala",
"-sourcepath", (ThisBuild / baseDirectory).value.absolutePath
),
(ScalaUnidoc / unidoc / unidocProjectFilter) := inAnyProject -- inProjects(`scalajs-bundler-linker`)
)
.aggregate(`sbt-scalajs-bundler`, `sbt-web-scalajs-bundler`)
val ornateTarget = Def.setting(target.value / "ornate")
val manual =
project.in(file("manual"))
.enablePlugins(OrnatePlugin)
.settings(noPublishSettings: _*)
.settings(
scalaVersion := "2.12.11",
ornateSourceDir := Some(sourceDirectory.value / "ornate"),
ornateTargetDir := Some(ornateTarget.value),
ornateSettings := Map("version" -> version.value),
ornate / siteSubdirName := "",
addMappingsToSiteDir(ornate / mappings, ornate / siteSubdirName),
ornate / mappings := {
val _ = ornate.value
val output = ornateTarget.value
output ** AllPassFilter --- output pair Path.relativeTo(output)
},
packageDoc / siteSubdirName := "api/latest",
addMappingsToSiteDir(mappings in ScalaUnidoc in packageDoc in apiDoc, packageDoc / siteSubdirName)
)
val `scalajs-bundler` =
project.in(file("."))
.settings(noPublishSettings: _*)
.aggregate(`sbt-scalajs-bundler`, `sbt-web-scalajs-bundler`)
inThisBuild(List(
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-encoding", "UTF-8",
"-unchecked",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Xfuture"
),
scmInfo := Some(
ScmInfo(
url("https://github.com/scalacenter/scalajs-bundler"),
"scm:[email protected]:scalacenter/scalajs-bundler.git"
)
),
organization := "ch.epfl.scala",
homepage := Some(url(s"https://github.com/scalacenter/scalajs-bundler")),
licenses := Seq("MIT License" -> url("http://opensource.org/licenses/mit-license.php")),
developers := List(Developer("julienrf", "Julien Richard-Foy", "[email protected]", url("http://julien.richard-foy.fr")))
))
lazy val commonSettings = List(
scriptedLaunchOpts ++= Seq(
"-Dplugin.version=" + version.value,
s"-Dscalajs.version=$scalaJSVersion",
"-Dsbt.execute.extrachecks=true" // Avoid any deadlocks.
),
scriptedBufferLog := false,
)
lazy val noPublishSettings =
Seq(
publishArtifact := false,
publish := {},
publishLocal := {}
)
ThisBuild / ivyLoggingLevel := UpdateLogging.Quiet