-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.fan
41 lines (33 loc) · 983 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
32
33
34
35
36
37
38
39
40
41
using build
class Build : BuildPod {
new make() {
podName = "afBounce"
summary = "A headless browser for testing web sites and BedSheet applications"
version = Version("1.1.15")
meta = [
"pod.dis" : "Bounce",
"repo.tags" : "testing, web",
"repo.public" : "true"
]
depends = [
"sys 1.0.71 - 1.0",
"concurrent 1.0.71 - 1.0",
"wisp 1.0.71 - 1.0",
"web 1.0.71 - 1.0",
"inet 1.0.71 - 1.0",
"xml 1.0.71 - 1.0",
// ---- Core ------------------------
"afConcurrent 1.0.24 - 1.0",
"afIoc 3.0.6 - 3.0",
"afIocConfig 1.1.0 - 1.1",
// ---- Web -------------------------
"afBedSheet 1.5.16 - 1.5",
"afButter 1.2.10 - 1.2",
"afSizzle 1.0.2 - 1.0",
// ---- Other -------------------------
"afHtmlParser 0.2.6 - 0.2"
]
srcDirs = [`fan/`, `fan/internal/`, `fan/public/`, `test/`, `test/unit-tests/`, `test/web-tests/`]
resDirs = [`doc/`]
}
}