forked from akka-js/akka.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
407 lines (360 loc) · 14 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
403
404
405
406
407
val akkaJsVersion = "0.2.4.12"
val akkaOriginalVersion = "v2.4.12"
val commonSettings = Seq(
scalaVersion := "2.12.0",
crossScalaVersions := Seq("2.11.8"),
organization := "eu.unicredit",
scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
"-feature",
"-language:postfixOps",
"-language:reflectiveCalls",
"-encoding", "utf8"
),
resolvers ++= Seq(
Resolver.typesafeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
),
parallelExecution in Global := false,
sources in doc in Compile := Nil,
scalaJSStage in Global := FastOptStage,
cancelable in Global := true
)
val publishSettings = Seq(
publishMavenStyle := true,
pomIncludeRepository := { x => false },
credentials += Credentials(Path.userHome / ".ivy2" / "sonatype.credentials"),
pomExtra := {
<url>https://github.com/unicredit/akka.js</url>
<licenses>
<license>
<name>Scala License</name>
<url>http://www.scala-lang.org/license.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/unicredit/akka.js</connection>
<developerConnection>scm:git:[email protected]:unicredit/akka.js</developerConnection>
<url>github.com/unicredit/akka.js</url>
</scm>
<developers>
<developer>
<id>andreaTP</id>
<name>Andrea Peruffo</name>
<url>https://github.com/andreaTP/</url>
</developer>
<developer>
<id>yawnt</id>
<name>Gianluca Stivan</name>
<url>https://github.com/yawnt/</url>
</developer>
</developers>
}
)
import java.io.File
lazy val akkaVersion = settingKey[String]("akkaVersion")
lazy val akkaTargetDir = settingKey[File]("akkaTargetDir")
lazy val assembleAkkaLibrary = taskKey[Unit](
"Checks out akka standard library from submodules/akka and then applies overrides.")
lazy val fixResources = taskKey[Unit](
"Fix application.conf presence on first clean build.")
//basically eviction rules
def rm_clash(base: File, target: File): Unit = {
if (base.exists &&
((base.isFile &&
((target.exists && target.isFile) || base.getName.endsWith(".java"))) ||
(base.isDirectory && target.isDirectory &&
IO.listFiles(target).filterNot(_.getName.startsWith(".")).isEmpty))
) {
IO.delete(base)
} else if (base.exists && base.isDirectory)
IO.listFiles(base).foreach(f => rm_clash(f, new java.io.File(target, f.getName)))
}
def getAkkaSources(targetDir: File, version: String) = {
import org.eclipse.jgit.api._
if (!targetDir.exists) {
//s.log.info(s"Fetching Akka source version ${akkaVersion.value}")
// Make parent dirs and stuff
IO.createDirectory(targetDir)
// Clone akka source code
new CloneCommand()
.setDirectory(targetDir)
.setURI("https://github.com/akka/akka.git")
.call()
val git = Git.open(targetDir)
//s.log.info(s"Checking out Akka source version ${version}")
git.checkout().setName(s"${version}").call()
}
}
def copyToSourceFolder(sourceDir: File, targetDir: File) = {
IO.delete(targetDir)
IO.copyDirectory(
sourceDir,
targetDir,
overwrite = true,
preserveLastModified = true)
(targetDir / ".gitkeep").createNewFile
}
lazy val akkaJsActor = crossProject.in(file("akka-js-actor"))
.settings(commonSettings : _*)
.settings(
version := akkaJsVersion,
akkaVersion := akkaOriginalVersion,
akkaTargetDir := target.value / "akkaSources" / akkaVersion.value,
assembleAkkaLibrary := {
getAkkaSources(akkaTargetDir.value, akkaVersion.value)
val srcTarget = file("akka-js-actor/shared/src/main/scala")
copyToSourceFolder(
akkaTargetDir.value / "akka-actor" / "src" / "main" / "scala",
srcTarget
)
copyToSourceFolder(
akkaTargetDir.value / "akka-actor" / "src" / "main" / "boilerplate",
file("akka-js-actor/js/src/main/boilerplate")
)
val jsSources = file("akka-js-actor/js/src/main/scala")
rm_clash(srcTarget, jsSources)
},
fixResources := {
val compileConf = (resourceDirectory in Compile).value / "application.conf"
if (compileConf.exists)
IO.copyFile(
compileConf,
(classDirectory in Compile).value / "application.conf"
)
val testConf = (resourceDirectory in Test).value / "application.conf"
if (testConf.exists) {
IO.copyFile(
testConf,
(classDirectory in Test).value / "application.conf"
)
}
}
).jsSettings(
libraryDependencies ++= Seq(
"eu.unicredit" %%% "shocon" % "0.1.4",
"org.scala-js" %%% "scalajs-java-time" % "0.2.0",
"org.scala-lang.modules" %% "scala-java8-compat" % "0.8.0" % "provided"
),
compile in Compile := {
val analysis = (compile in Compile).value
val classDir = (classDirectory in Compile).value
val configFile = (baseDirectory in Compile).value / ".." / ".." / "config" / "ir_patch.config"
unicredit.IrPatcherPlugin.patchThis(classDir, configFile)
analysis
}
).jsSettings(
useAnnotationAdderPluginSettings : _*
).jsSettings(
publishSettings : _*
).jsSettings(sonatypeSettings : _*
).jsSettings(
excludeDependencies += ("eu.unicredit" %% "akkaactorjsirpatches"),
compile in Compile <<= (compile in Compile) dependsOn (assembleAkkaLibrary, fixResources),
publishLocal <<= publishLocal dependsOn (assembleAkkaLibrary, fixResources),
PgpKeys.publishSigned <<= PgpKeys.publishSigned dependsOn (assembleAkkaLibrary, fixResources)
).enablePlugins(spray.boilerplate.BoilerplatePlugin)
lazy val akkaJsActorJS = akkaJsActor.js.dependsOn(akkaJsActorIrPatches % "provided")
lazy val akkaTestkit = crossProject.in(file("akka-js-testkit"))
.settings(commonSettings: _*)
.settings(
version := akkaJsVersion
).jsSettings(
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % "3.0.0" withSources (),
"org.scala-js" %% "scalajs-test-interface" % "0.6.13" % "test"
),
scalaJSStage in Global := FastOptStage,
publishArtifact in (Test, packageBin) := true//,
//preLinkJSEnv := jsEnv.value,
//postLinkJSEnv := jsEnv.value.withSourceMap(true)
).dependsOn(akkaJsActor)
lazy val akkaTestkitJS = akkaTestkit.js.dependsOn(akkaJsActorJS)
lazy val akkaActorTest = crossProject.in(file("akka-js-actor-tests"))
.settings(commonSettings: _*)
.settings(
version := akkaJsVersion,
akkaVersion := akkaOriginalVersion,
akkaTargetDir := file("akka-js-actor/js/target/") / "akkaSources" / akkaVersion.value,
assembleAkkaLibrary := {
getAkkaSources(akkaTargetDir.value, akkaVersion.value)
val srcTarget = file("akka-js-actor-tests/shared/src/test/scala")
copyToSourceFolder(
akkaTargetDir.value / "akka-actor-tests" / "src" / "test" / "scala",
srcTarget
)
val jsSources = file("akka-js-actor-tests/js/src/test/scala")
rm_clash(srcTarget, jsSources)
}
).jsSettings(
scalaJSStage in Global := FastOptStage,
publishArtifact in (Test, packageBin) := true,
//scalaJSOptimizerOptions ~= { _.withDisableOptimizer(true) },
//preLinkJSEnv := jsEnv.value,
//postLinkJSEnv := jsEnv.value.withSourceMap(true),
libraryDependencies ++= Seq(
"org.scalacheck" %%% "scalacheck" % "1.13.4" % "test"
),
excludeDependencies += ("eu.unicredit" %% "akkaactorjsirpatches"),
compile in Compile <<= (compile in Compile) dependsOn assembleAkkaLibrary,
publishLocal <<= publishLocal dependsOn assembleAkkaLibrary
).dependsOn(akkaTestkit % "test->test")
lazy val akkaActorTestJS = akkaActorTest.js
lazy val akkaJsActorStream = crossProject.in(file("akka-js-actor-stream"))
.settings(commonSettings : _*)
.settings(
version := akkaJsVersion,
akkaVersion := akkaOriginalVersion,
akkaTargetDir := file("akka-js-actor/js/target/") / "akkaSources" / akkaVersion.value,
assembleAkkaLibrary := {
getAkkaSources(akkaTargetDir.value, akkaVersion.value)
val srcTarget = file("akka-js-actor-stream/shared/src/main/scala")
copyToSourceFolder(
akkaTargetDir.value / "akka-stream" / "src" / "main" / "scala",
srcTarget
)
copyToSourceFolder(
akkaTargetDir.value / "akka-stream" / "src" / "main" / "boilerplate",
file("akka-js-actor-stream/js/src/main/boilerplate")
)
val jsSources = file("akka-js-actor-stream/js/src/main/scala")
rm_clash(srcTarget, jsSources)
},
fixResources := {
val compileConf = (resourceDirectory in Compile).value / "application.conf"
if (compileConf.exists)
IO.copyFile(
compileConf,
(classDirectory in Compile).value / "application.conf"
)
val testConf = (resourceDirectory in Test).value / "application.conf"
if (testConf.exists) {
IO.copyFile(
testConf,
(classDirectory in Test).value / "application.conf"
)
}
}
).jsSettings(
useAnnotationAdderPluginSettings : _*
).jsSettings(
publishSettings : _*
).jsSettings(sonatypeSettings : _*
).jsSettings(
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-java8-compat" % "0.8.0" % "provided"
),
excludeDependencies += ("eu.unicredit" %% "akkaactorjsirpatches"),
compile in Compile <<= (compile in Compile) dependsOn (assembleAkkaLibrary, fixResources),
publishLocal <<= publishLocal dependsOn (assembleAkkaLibrary, fixResources),
PgpKeys.publishSigned <<= PgpKeys.publishSigned dependsOn (assembleAkkaLibrary, fixResources, BoilerplatePlugin.autoImport.boilerplateGenerate)
).enablePlugins(spray.boilerplate.BoilerplatePlugin).dependsOn(akkaJsActor)
lazy val akkaJsActorStreamJS = akkaJsActorStream.js
lazy val akkaStreamTestkit = crossProject.in(file("akka-js-stream-testkit"))
.settings(commonSettings: _*)
.settings(
// parallelExecution in Test := false,
version := akkaJsVersion,
akkaVersion := akkaOriginalVersion,
akkaTargetDir := file("akka-js-actor/js/target/") / "akkaSources" / akkaVersion.value,
assembleAkkaLibrary := {
getAkkaSources(akkaTargetDir.value, akkaVersion.value)
val srcTarget = file("akka-js-stream-testkit/shared/src/test/scala")
copyToSourceFolder(
akkaTargetDir.value / "akka-stream-testkit" / "src" / "test" / "scala",
srcTarget
)
copyToSourceFolder(
akkaTargetDir.value / "akka-stream-testkit" / "src" / "main" / "scala",
file("akka-js-stream-testkit/shared/src/main/scala")
)
val jsSources = file("akka-js-stream-testkit/js/src/test/scala")
rm_clash(srcTarget, jsSources)
}
).jsSettings(
scalaJSStage in Global := FastOptStage,
publishArtifact in (Test, packageBin) := true,
//scalaJSOptimizerOptions ~= { _.withDisableOptimizer(true) },
//preLinkJSEnv := jsEnv.value,
//postLinkJSEnv := jsEnv.value.withSourceMap(true),
excludeDependencies += ("eu.unicredit" %% "akkaactorjsirpatches"),
compile in Compile <<= (compile in Compile) dependsOn assembleAkkaLibrary,
publishLocal <<= publishLocal dependsOn assembleAkkaLibrary
).dependsOn(akkaJsActorStream, akkaTestkit)
lazy val akkaStreamTestkitJS = akkaStreamTestkit.js
lazy val akkaStreamTest = crossProject.in(file("akka-js-stream-tests"))
.settings(commonSettings: _*)
.settings(
version := akkaJsVersion,
akkaVersion := akkaOriginalVersion,
akkaTargetDir := file("akka-js-actor/js/target/") / "akkaSources" / akkaVersion.value,
assembleAkkaLibrary := {
getAkkaSources(akkaTargetDir.value, akkaVersion.value)
val srcTarget = file("akka-js-stream-tests/shared/src/test/scala")
copyToSourceFolder(
akkaTargetDir.value / "akka-stream-tests" / "src" / "test" / "scala",
srcTarget
)
val jsSources = file("akka-js-stream-tests/js/src/test/scala")
rm_clash(srcTarget, jsSources)
}
).jsSettings(
libraryDependencies ++= Seq(
"org.scalacheck" %%% "scalacheck" % "1.13.4" % "test"
),
scalaJSStage in Global := FastOptStage,
publishArtifact in (Test, packageBin) := true
//scalaJSOptimizerOptions ~= { _.withDisableOptimizer(true) },
//preLinkJSEnv := jsEnv.value,
//postLinkJSEnv := jsEnv.value.withSourceMap(true)
).jsSettings(
excludeDependencies += ("eu.unicredit" %% "akkaactorjsirpatches"),
compile in Compile <<= (compile in Compile) dependsOn assembleAkkaLibrary,
publishLocal <<= publishLocal dependsOn assembleAkkaLibrary
).dependsOn(akkaStreamTestkit % "test->test", akkaJsActorStream)
lazy val akkaStreamTestJS = akkaStreamTest.js
//COMPILER PLUGINS SECTION
//add scala.js annotations to proper classes
lazy val annotationAdderPlugin = Project(
id = "annotationAdderPlugin",
base = file("plugins/annotation-adder-plugin")
) settings (
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-compiler" % _),
publishArtifact in Compile := false
) settings (commonSettings : _*)
lazy val useAnnotationAdderPluginSettings = Seq(
scalacOptions in Compile <++= (Keys.`package` in (annotationAdderPlugin, Compile)) map { (jar: File) =>
Seq("-Xplugin:" + jar.getAbsolutePath)
}
)
//SCALAJS IR PATCHER SECTION
//core patches project
lazy val akkaJsActorIrPatches = Project(
id = "akkaActorJSIrPatches",
base = file("akka-js-actor-ir-patches")
).
settings (
compile in Compile := {
val analysis = (compile in Compile).value
val classDir = (classDirectory in Compile).value
val base = (baseDirectory in Compile).value
val writer = new java.io.PrintWriter(base / ".." / "config" / "ir_patch.config", "UTF-8")
writer.print(classDir)
writer.flush
writer.close
analysis
},
publishArtifact in Compile := true
).settings (commonSettings : _*
).enablePlugins (ScalaJSPlugin)
lazy val root = project.in(file(".")).settings(commonSettings: _*)
.aggregate(
akkaJsActorIrPatches,
akkaJsActorJS,
akkaTestkitJS,
akkaActorTestJS,
akkaJsActorStreamJS,
akkaStreamTestkitJS,
akkaStreamTestJS
)