Include branch failing information in project list
[candle] / candle.asd
1 (asdf:defsystem candle
2  :name "Command Line Common Lisp Continuous Integration Tool"
3  :version "0.1"
4  :maintainer "Frank Duncan (frank@consxy.com)"
5  :author "Frank Duncan (frank@consxy.com)"
6  :serial t
7  :pathname "src/main"
8  :components ((:file "package")
9               (:file "base")
10               (:file "git")
11               (:file "run")
12               (:file "processor")
13               (:file "server")
14               (:file "cli"))
15  :depends-on (:herbie-utility :opera))
16
17 (asdf:defsystem candle-aws
18  :pathname "src/main/aws"
19  :components ((:file "aws") (:file "config")))
20
21 (asdf:defsystem candle-local
22  :pathname "src/main/local"
23  :components ((:file "local") (:file "config")))