-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
70 lines (56 loc) · 1.52 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
lazy val jsonFramework = "org.json4s" %% "json4s-native" % "4.0.6"
lazy val yamlFramework = "org.yaml" % "snakeyaml" % "1.26"
lazy val idioma = (project in file("."))
.aggregate(
`data-loader`,
grammar,
generator,
iberia,
portuguese,
spanish,
tagalog,
arabic,
japanese,
german,
korean,
mandarin
)
lazy val iberia = project
.dependsOn(spanish, portuguese)
lazy val `data-loader` = project
.withEffectMonad
.withJsonParsing
.withYaml
lazy val grammar = project
lazy val generator = project.withTesting
lazy val portuguese = project
.dependsOn(grammar, generator, `data-loader`)
.settings(libraryDependencies ++= Seq(jsonFramework))
.withCats
.withTesting
lazy val spanish = project
.dependsOn(grammar, generator, `data-loader`)
.withTesting
lazy val tagalog = project
.dependsOn(grammar, generator, `data-loader`)
.withTesting
lazy val arabic = project
.dependsOn(grammar, generator)
.withTesting
lazy val japanese = project
.dependsOn(grammar, generator)
.withTesting
lazy val german = project
.dependsOn(grammar, generator)
.withTesting
lazy val korean = project
.dependsOn(grammar, generator, `data-loader`)
.withGitHubPackagesCredentials
.withResolver("hangul")
.settings(libraryDependencies ++= Seq(jsonFramework))
.settings(libraryDependencies += "com.htmlism" %% "hangul-model" % "322-485a82b9")
.withTesting
lazy val mandarin = project
.dependsOn(grammar, generator)
.settings(libraryDependencies ++= Seq(yamlFramework))
.withTesting