-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fan
31 lines (24 loc) · 911 Bytes
/
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
using build
class Build : BuildPod {
new make() {
podName = "afIoc"
summary = "A fast, lightweight, and highly customisable Dependency Injection framework"
version = Version("3.0.9")
meta = [
"pod.dis" : "IoC",
"repo.tags" : "system",
"repo.public" : "true"
]
depends = [
"sys 1.0.68 - 1.0",
"concurrent 1.0.68 - 1.0", // used for Actor.locals, Actor.sleep, AtomicInt, AtomicBool
"afBeanUtils 1.0.8 - 1.0", // used for ReflectUtils, NotFoundErr, TypeCoercer
// ---- Test ----
"afConcurrent 1.0.20 - 1.0"
]
srcDirs = [`fan/`, `fan/internal/`, `fan/internal/def/`, `fan/internal/inspectors/`, `fan/internal/providers/`, `fan/public/`, `fan/public/advanced/`, `fan/public/facets/`, `fan/public/services/`, `test/`]
resDirs = [`doc/`]
meta["afBuild.testPods"] = "afConcurrent"
//meta["afBuild.testDirs"] = ""
}
}