-
Notifications
You must be signed in to change notification settings - Fork 2
/
build211.toml
45 lines (39 loc) · 925 Bytes
/
build211.toml
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
[project]
scalaVersion = "2.11.12"
scalaJsVersion = "1.0.1"
scalaNativeVersion = "0.4.0-M2"
scalaOptions = [
"-encoding", "UTF-8",
"-unchecked",
"-deprecation",
"-Xfuture",
"-Ywarn-numeric-widen",
"-feature"
]
testFrameworks = [
"org.scalatest.tools.Framework"
]
[module.translit]
root = "shared"
sources = ["shared/src/main/scala"]
targets = ["js", "jvm", "native"]
[module.translit.jvm]
root = "jvm"
[module.translit.test]
sources = ["shared/src/test/scala"]
targets = ["js", "jvm", "native"]
[module.translit.test.jvm]
sources = ["jvm/src/test/scala"]
scalaDeps = [
["org.scalatest", "scalatest", "3.2.2"],
["com.github.pathikrit", "better-files", "3.9.1"],
["org.scalaj", "scalaj-http", "2.4.2"]
]
[module.translit.test.js]
scalaDeps = [
["org.scalatest", "scalatest", "3.1.1"]
]
[module.translit.test.native]
scalaDeps = [
["org.scalatest", "scalatest", "3.2.2"]
]