;;;; backplane-server.asd (asdf:defsystem #:backplane-server :description "XMPP Backplane Server" :author "Niten " :version "0.1.0" :serial t :depends-on (:alexandria :arrows :cl-json :cl-xmpp :cl-xmpp-tls) :components ((:file "package") (:file "backplane-server")) :in-order-to ((test-op (test-op :backplane-server/test)))) (asdf:defsystem #:backplane-server/test :description "XMPP Backplane Server Tests" :author "Niten " :depends-on (:arrows :backplane-server :cl-json :prove) :components ((:module "test" :serial t :components ((:file "backplane-server-test")))) :perform (asdf:test-op (op c) (uiop:symbol-call :prove '#:run '#:backplane-server/test)))