forked from kraison/cl-neo4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-neo4j.asd
43 lines (40 loc) · 1.39 KB
/
cl-neo4j.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;; ASDF package description for cl-neo4j -*- Lisp -*-
(defpackage :cl-neo4j-system (:use :cl :asdf))
(in-package :cl-neo4j-system)
(defsystem cl-neo4j
:name "neo4j RESTful Client Interface ()"
:maintainer "Mikhail Novikov <[email protected]>"
:author "Kevin Raison <last name @ chatsubo dot net>"
:version "0.4"
:description "neo4j RESTful Client Interface"
:long-description "neo4j RESTful Client Interface and higher order extensible CL wrapper for it."
:depends-on (:alexandria
:anaphora
:split-sequence
:drakma
:babel
:cl-json
:cl-ppcre)
:components
((:module "src"
:serial t
:components
((:file "package")
(:file "globals" :depends-on ("package"))
(:file "utilities" :depends-on ("globals"))
(:file "conditions" :depends-on ("utilities"))
(:file "requests" :depends-on ("conditions"))
(:file "restapi" :depends-on ("requests"))
(:file "wrapper" :depends-on ("restapi"))))))
(defsystem cl-neo4j.tests
:depends-on (:cl-neo4j
:fiveam)
:components
((:module "test"
:serial t
:components
((:file "package")
(:file "util")
(:file "main")
(:file "restapi")
(:file "wrapper")))))