-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.fan
52 lines (43 loc) · 1.17 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
45
46
47
48
49
50
51
52
using build
using fanr
class Build : BuildPod {
new make() {
podName = "afFantomLang"
summary = "The Fantom-Lang Website"
version = Version("1.1.0.13")
meta = [
"pod.dis" : "fantom-lang.org",
"afIoc.module" : "afFantomLang::AppModule",
"repo.public" : "false"
]
depends = [
"sys 1.0.70 - 1.0",
"concurrent 1.0.70 - 1.0",
"web 1.0.70 - 1.0",
"util 1.0.70 - 1.0",
// ---- Core ------------------------
"afBeanUtils 1.0.12 - 1.0",
"afConcurrent 1.0.26 - 1.0",
"afIoc 3.0.8 - 3.0",
"afIocConfig 1.1.2 - 1.1",
"afIocEnv 1.1.0 - 1.1",
// ---- Web -------------------------
"afBedSheet 1.5.16 - 1.5", // for SleepSafe
"afPillow 1.2.2 - 1.2",
"afEfanXtra 2.0.6 - 2.0",
"afColdFeet 1.4.0 - 1.4",
"afDuvet 1.1.12 - 1.1",
"afSlim 1.3.2 - 1.3",
"afSitemap 1.1.0 - 1.1",
"afGoogleAnalytics 0.1.10 - 0.1",
"afAskFanny 0.0.4 - 0.0",
"afSleepSafe 1.0.6 - 1.0"
]
srcDirs = [`fan/`, `fan/web/`, `fan/web/components/`, `fan/web/pages/`]
resDirs = [
,
]
docApi = false
docSrc = false
}
}