-
Notifications
You must be signed in to change notification settings - Fork 12
/
mu-cl-resources.asd
27 lines (27 loc) · 1.3 KB
/
mu-cl-resources.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
(asdf:defsystem :mu-cl-resources
:name "mu-cl-resources"
:author "Aad Versteden <[email protected]>"
:version "1.25.0"
:maintainer "Aad Versteden <[email protected]>"
:licence "MIT"
:description "Configurable microservice for managing the creation and retrieval of generic resources with a backed triplestore."
:serial t
:depends-on (mu-support split-sequence lparallel trivial-backtrace trivial-package-local-nicknames luckless)
:components ((:file "packages")
(:file "configuration/repository")
(:file "configuration/settings")
(:file "framework/callbacks")
(:file "framework/error-codes")
(:file "framework/support")
(:file "framework/query-execution")
(:file "framework/caching")
(:file "framework/query-parsing")
(:file "framework/resource-model")
(:file "framework/domain-parsing")
(:file "framework/request-parsing")
(:file "framework/response-generation")
(:file "framework/included-items")
(:file "framework/call-implementation")
(:file "framework/call-specification")
(:file "framework/resource-validations")
(:file "configuration/domain")))