forked from scala-exercises/scala-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
executable file
·229 lines (206 loc) · 7.79 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
import play.sbt.PlayImport._
import sbt.Keys._
import sbt.Project.projectToRef
import webscalajs._
lazy val `scala-exercises` = (project in file("."))
.settings(moduleName := "scala-exercises")
.settings(noPublishSettings: _*)
.aggregate(server, client, coreJs, coreJvm, runtime, definitions, compiler)
.dependsOn(server, client, coreJs, coreJvm, runtime, definitions, compiler)
////////////////////
// Project Modules:
////////////////////
// Purely functional core
lazy val core = (crossProject in file("core"))
.settings(
libraryDependencies ++= Seq(
%%("cats-core"),
%%("cats-free"),
"com.47deg" %% "freestyle" % v('freestyle)
)
)
.jsSettings(sharedJsSettings: _*)
lazy val coreJvm = core.jvm
lazy val coreJs = core.js
// Client and Server projects
lazy val server = (project in file("server"))
.aggregate(clients.map(projectToRef): _*)
.dependsOn(coreJvm)
.enablePlugins(PlayScala)
.enablePlugins(SbtWeb)
.settings(noPublishSettings: _*)
.settings(
scalaJSProjects := clients,
pipelineStages in Assets := Seq(scalaJSPipeline),
pipelineStages := Seq(scalaJSProd, gzip),
routesGenerator := InjectedRoutesGenerator,
routesImport += "config.Routes._",
testOptions in Test := Seq(Tests.Argument(TestFrameworks.Specs2, "console")),
libraryDependencies ++= Seq(
filters,
jdbc,
evolutions,
cache,
ws,
"org.scala-exercises" %% "exercises-stdlib" % v('stdlib) xscalaExercises,
"org.scala-exercises" %% "exercises-cats" % v('cats) xscalaExercises,
"org.scala-exercises" %% "exercises-shapeless" % v('shapeless) xscalaExercises,
"org.scala-exercises" %% "exercises-doobie" % v('doobie) xscalaExercises,
"org.scala-exercises" %% "exercises-scalacheck" % v('scalacheck) xscalaExercises,
"org.scala-exercises" %% "exercises-fpinscala" % v('fpinscala) xscalaExercises,
"org.scala-exercises" %% "exercises-scalatutorial" % v('scalatutorial) xscalaExercises,
"org.scala-exercises" %% "exercises-circe" % v('circe) xscalaExercises,
"org.scala-exercises" %% "exercises-fetch" % v('fetch) xscalaExercises,
"org.scala-exercises" %% "exercises-monocle" % v('monocle) xscalaExercises,
"org.scala-exercises" %% "evaluator-client" % v('evaluator) changing (),
"org.scala-exercises" %% "runtime" % version.value changing (),
"org.postgresql" % "postgresql" % v('postgres),
"com.vmunier" %% "scalajs-scripts" % v('scalajsscripts),
"com.lihaoyi" %% "upickle" % v('upickle),
"org.webjars" %% "webjars-play" % v('webjars),
"org.webjars" % "bootstrap-sass" % v('bootstrap),
"org.webjars" % "highlightjs" % v('highlightjs),
"com.tristanhunt" %% "knockoff" % v('knockoff),
"com.newrelic.agent.java" % "newrelic-agent" % v('newrelic),
"commons-io" % "commons-io" % v('commonsio),
"com.47deg" %% "freestyle" % v('freestyle),
%%("github4s"),
%("slf4j-nop"),
%%("scalaz-concurrent"),
%%("scalatest") % "runtime",
%%("doobie-core"),
%%("doobie-hikari"),
%%("doobie-postgres"),
%%("simulacrum"),
specs2 xscalaz,
%%("scheckShapeless") % "test",
%%("doobie-specs2") % "test",
%%("scalazspecs2") % "test"
)
)
lazy val client = (project in file("client"))
.dependsOn(coreJs)
.enablePlugins(ScalaJSPlugin, ScalaJSWeb)
.disablePlugins(ScoverageSbtPlugin)
.settings(name := "client")
.settings(noPublishSettings: _*)
.settings(
scalaJSUseMainModuleInitializer := true,
scalaJSUseMainModuleInitializer in Test := false,
sourceMappings := SourceMappings.fromFiles(Seq(coreJs.base / "..")),
scalaJSOptimizerOptions in (Compile, fullOptJS) ~= {
_.withParallel(false)
},
jsDependencies += "org.webjars" % "jquery" % "2.1.4" / "2.1.4/jquery.js",
skip in packageJSDependencies := false,
jsDependencies += RuntimeDOM % "test",
testFrameworks += new TestFramework("utest.runner.Framework"),
libraryDependencies ++= Seq(
%%%("monix"),
%%%("monix-cats"),
%%%("cats-core"),
"com.lihaoyi" %%% "scalatags" % v('scalatags) xscalajs,
"org.scala-js" %%% "scalajs-dom" % v('scalajsdom),
"be.doeraene" %%% "scalajs-jquery" % v('scalajsjquery) xscalajs,
"com.lihaoyi" %%% "upickle" % v('upickle),
"com.lihaoyi" %%% "utest" % v('utest) % "test"
)
)
lazy val clients = Seq(client)
// Definitions
lazy val definitions = (project in file("definitions"))
.settings(name := "definitions")
.settings(
libraryDependencies ++= Seq(
%%("cats-core"),
%%("scalatest"),
%%("scalacheck"),
%%("scheckShapeless")
)
)
// Runtime
lazy val runtime = (project in file("runtime"))
.settings(name := "runtime")
.settings(
libraryDependencies ++= Seq(
"org.clapper" %% "classutil" % v('classutil),
"org.scala-exercises" %% "evaluator-client" % v('evaluator) changing (),
%%("monix"),
%%("cats-core") % "compile",
%%("scalatest") % "test"
)
)
// Compiler
lazy val compiler = (project in file("compiler"))
.settings(name := "exercise-compiler")
.settings(
exportJars := true,
libraryDependencies ++= Seq(
"org.scalariform" %% "scalariform" % v('scalariform),
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "compile",
%%("github4s"),
%%("cats-core") % "compile",
%%("cats-laws") % "test",
%%("scalatest") % "test"
)
)
.dependsOn(definitions, runtime)
// Compiler plugin
lazy val `sbt-exercise` = (project in file("sbt-exercise"))
.settings(name := "sbt-exercise")
.settings(
scalaVersion := "2.10.6",
sbtPlugin := true,
libraryDependencies ++= Seq(
%%("cats-core") % "compile"
),
// Leverage build info to populate compiler classpath--
// This allows SBT, which currently requires Scala 2.10.x, to load and run
// the compiler, which requires Scala 2.11.x.
compilerClasspath := { fullClasspath in (compiler, Compile) }.value,
buildInfoObject := "Meta",
buildInfoPackage := "org.scalaexercises.plugin.sbtexercise",
buildInfoKeys := Seq(
version,
BuildInfoKey.map(compilerClasspath) {
case (_, classFiles) ⇒ ("compilerClasspath", classFiles.map(_.data))
}
)
)
// scripted plugin
.settings(ScriptedPlugin.scriptedSettings: _*)
.settings(
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
},
scriptedBufferLog := false,
// Publish definitions before running scripted
scriptedDependencies := {
val x = (compile in Test).value
val y = (publishLocal in definitions).value
val z = (publishLocal in runtime).value
()
}
)
.enablePlugins(BuildInfoPlugin)
///////////////////
// Global settings:
///////////////////
parallelExecution in Global := false
// Disable forking in CI
fork in Test := (System.getenv("CONTINUOUS_INTEGRATION") == null)
pgpPassphrase := Some(getEnvVar("PGP_PASSPHRASE").getOrElse("").toCharArray)
pgpPublicRing := file(s"$gpgFolder/pubring.gpg")
pgpSecretRing := file(s"$gpgFolder/secring.gpg")
lazy val compilerClasspath = TaskKey[Classpath]("compiler-classpath")
// Aliases
addCommandAlias(
"testAll",
";server/test;client/test;definitions/test;runtime/test;compiler/test;sbt-exercise/scripted")
addCommandAlias(
"publishAll",
";definitions/publishLocal;runtime/publishLocal;compiler/publishLocal;sbt-exercise/publishLocal")
addCommandAlias(
"publishSignedAll",
";definitions/publishSigned;runtime/publishSigned;compiler/publishSigned;sbt-exercise/publishSigned")