aboutsummaryrefslogtreecommitdiffstats
path: root/wajir.asd
diff options
context:
space:
mode:
authorTeddy Wing2022-05-07 00:28:08 +0200
committerTeddy Wing2022-05-07 02:20:55 +0200
commit53035fa4aa5f3a471d4093e70269ae992b12feef (patch)
treee2de70c782db3a957c18e7f3ca3d2ac09e6e863c /wajir.asd
parentcdf7137e45f41d876984361f0fc23ac83112f676 (diff)
downloadwajir-53035fa4aa5f3a471d4093e70269ae992b12feef.tar.bz2
Try querying issues from Jira
Set up a Common Lisp project skeleton and make a request to the Atlassian API to get a filtered list of issues that the current user isn't watching.
Diffstat (limited to 'wajir.asd')
-rw-r--r--wajir.asd16
1 files changed, 16 insertions, 0 deletions
diff --git a/wajir.asd b/wajir.asd
new file mode 100644
index 0000000..2ebed6e
--- /dev/null
+++ b/wajir.asd
@@ -0,0 +1,16 @@
+(asdf:defsystem wajir
+ :version "0.0.1"
+ :depends-on (:cl-smtp
+ :dexador)
+ :components ((:module "src"
+ :serial t
+ :components ((:file "package")
+ (:file "main"))))
+
+ :build-operation "program-op"
+ :build-pathname "wajir"
+ :entry-point "wajir")
+
+#+sb-core-compression
+(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
+ (uiop:dump-image (asdf:output-file o c) :executable t :compression t))