This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild212.toml
66 lines (59 loc) · 1.52 KB
/
build212.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
scalaVersion = "2.12.8"
scalaJsVersion = "0.6.28"
scalaNativeVersion = "0.3.9"
scalaOptions = [
"-encoding", "UTF-8",
"-unchecked",
"-deprecation",
"-Xfuture",
"-Yno-adapted-args",
"-Ywarn-numeric-widen",
"-feature"
]
testFrameworks = [
"org.scalatest.tools.Framework",
"org.scalacheck.ScalaCheckFramework"
]
[module.toml]
root = "shared"
sources = ["shared/src/main/scala"]
targets = ["js", "jvm", "native"]
scalaDeps = [
["org.scalameta", "fastparse", "1.0.1"],
["com.chuusai", "shapeless", "2.3.3"]
]
[module.toml.jvm]
root = "jvm"
sources = ["jvm/src/main/scala"]
[module.toml.test.jvm]
sources = ["shared/src/test/scala", "jvm/src/test/scala"]
scalaDeps = [
["org.scalatest" , "scalatest" , "3.0.8" ],
["org.scalacheck", "scalacheck", "1.14.0"]
]
[module.toml.js]
root = "js"
sources = ["js/src/main/scala"]
[module.toml.test.js]
sources = ["shared/src/test/scala"]
scalaDeps = [
["org.scalatest" , "scalatest" , "3.0.8" ],
["org.scalacheck", "scalacheck", "1.14.0"]
]
[module.toml.native]
root = "native"
scalaVersion = "2.11.12"
sources = ["native/src/main/scala"]
[module.toml.test.native]
# Exclude GeneratedSpec.scala and Generators.scala
sources = [
"shared/src/test/scala/toml/CodecSpec.scala",
"shared/src/test/scala/toml/EmbedSpec.scala",
"shared/src/test/scala/toml/GenerationSpec.scala",
"shared/src/test/scala/toml/RulesSpec.scala",
"shared/src/test/scala/toml/TestHelpers.scala",
]
scalaDeps = [
["org.scalatest", "scalatest", "3.2.0-SNAP10"]
]