-
Notifications
You must be signed in to change notification settings - Fork 4
/
cl-bunny.examples.asd
26 lines (23 loc) · 1.04 KB
/
cl-bunny.examples.asd
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
(in-package :cl-user)
(defpackage :cl-bunny.examples.system
(:use :cl :asdf))
(in-package :cl-bunny.examples.system)
(defsystem :cl-bunny.examples
:version "0.1"
:description "CL-BUNNY examples"
:maintainer "Ilya Khaprov <[email protected]>"
:author "Ilya Khaprov <[email protected]>"
:licence "MIT"
:depends-on ("cl-bunny"
"log4cl")
:serial t
:components ((:file "examples/package")
(:file "examples/guides/getting-started/weathr")
(:file "examples/guides/getting-started/blabbr")
(:file "examples/guides/getting-started/hello-world")
(:file "examples/guides/exchanges/direct-exchange-routing")
(:file "examples/guides/exchanges/fanout-exchange-routing")
(:file "examples/guides/exchanges/headers-exchange-routing")
(:file "examples/guides/exchanges/mandatory-messages")
(:file "examples/guides/queues/redeliveries")
(:file "examples/connection/authentication-failure")))