-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.fan
44 lines (34 loc) · 1.19 KB
/
build.fan
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
using build
class Build : BuildPod {
new make() {
podName = "afJson"
summary = "A JSON to Fantom object mapping library"
version = Version("2.0.17")
meta = [
"pod.dis" : "Json",
//"afIoc.module" : "afJson::JsonModule",
"repo.tags" : "system, web",
"repo.public" : "true",
// ---- SkySpark ----
"ext.name" : "afJson",
"ext.icon" : "afJson",
"ext.depends" : "afBeanUtils, afConcurrent",
"skyarc.icons" : "true",
]
index = [
"skyarc.ext" : "afJson"
]
depends = [
// ---- Fantom Core -----------------
"sys 1.0.73 - 1.0",
// ---- Fantom Factory --------------
"afBeanUtils 1.0.12 - 1.0", // for afBeanUtils::TypeCoercer & BeanBuilder
"afConcurrent 1.0.26 - 1.0", // for afConcurrent::AtomicMap
]
srcDirs = [`fan/`, `fan/advanced/`, `fan/internal/`, `fan/internal/converters/`, `test/`]
resDirs = [`doc/`, `svg/`]
docApi = true
docSrc = true
meta["afBuild.uberPod"] = "afConcurrent/AtomicMap afConcurrent/ConcurrentUtils afBeanUtils/BeanBuilder afBeanUtils/TypeCoercer afBeanUtils/TypeLookup afBeanUtils/ArgNotFoundErr afBeanUtils/NotFoundErr afBeanUtils/ReflectUtils"
}
}