Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cl-soap.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
(defsystem #:cl-soap
:description "SOAP 1.1/1.2 support for cl-xml."
:version "0.1.0"
:license "MIT"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:maintainer "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml)
:components ((:file "soap-package")
(:file "soap" :depends-on ("soap-package"))))
7 changes: 6 additions & 1 deletion cl-soap.test.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
(defsystem #:cl-soap.test
:description "Tests for cl-soap."
:license "MIT"
:version "0.1.0"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml #:cl-soap #:fiveam)
:components ((:module "t"
:components
Expand Down
7 changes: 6 additions & 1 deletion cl-wsdl.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
(defsystem #:cl-wsdl
:description "WSDL 2.0 support for cl-xml."
:version "0.1.0"
:license "MIT"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:maintainer "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml)
:components ((:file "wsdl-package")
(:file "wsdl" :depends-on ("wsdl-package"))))
7 changes: 6 additions & 1 deletion cl-wsdl.test.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
(defsystem #:cl-wsdl.test
:description "Tests for cl-wsdl."
:license "MIT"
:version "0.1.0"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml #:cl-wsdl #:fiveam)
:components ((:module "t"
:components
Expand Down
9 changes: 8 additions & 1 deletion cl-xml.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
(defsystem #:cl-xml
:description "A Common Lisp XML reader, writer, and custom parser."
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:version "0.1.0"
:license "MIT"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:maintainer "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:trivial-gray-streams)
:components ((:file "package")
(:file "structures" :depends-on ("package"))
Expand Down
7 changes: 6 additions & 1 deletion cl-xml.test.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
(defsystem #:cl-xml.test
:description "Tests for cl-xml."
:license "MIT"
:version "0.1.0"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml #:fiveam #:trivial-gray-streams)
:components ((:module "t"
:components
Expand Down
7 changes: 6 additions & 1 deletion cl-xsd.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
(defsystem #:cl-xsd
:description "XSD (XML Schema Definition) support for cl-xml."
:version "0.1.0"
:license "MIT"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:maintainer "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml)
:components ((:file "xsd-package")
(:file "xsd" :depends-on ("xsd-package"))))
7 changes: 6 additions & 1 deletion cl-xsd.test.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
(defsystem #:cl-xsd.test
:description "Tests for cl-xsd."
:license "MIT"
:version "0.1.0"
:author "Bruno Dias <dias.h.bruno@gmail.com>"
:license "Unlicense"
:homepage "https://github.com/cl-sdk/cl-xml"
:source-control (:git "https://github.com/cl-sdk/cl-xml")
:bug-tracker "https://github.com/cl-sdk/cl-xml/issues"
:depends-on (#:cl-xml #:cl-xsd #:fiveam)
:components ((:module "t"
:components
Expand Down
Loading