source:
trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd
Last change on this file was 15464, checked in by , 22 months ago | |
---|---|
File size: 791 bytes |
Rev | Line | |
---|---|---|
[13340] | 1 | ;;;; -*- Mode: LISP -*- |
[15008] | 2 | (defsystem abcl-asdf |
[13340] | 3 | :author "Mark Evenson" |
[14973] | 4 | :description "Extensions to ASDF for handling Java binary artifacts." |
[15464] | 5 | :long-description "<urn:abcl.org/release/1.8.0/contrib/abcl-asdf#>" |
[15018] | 6 | :version "2.1.0" |
[15010] | 7 | :depends-on (jss abcl-build) |
[13340] | 8 | :components |
[15010] | 9 | ((:module package |
10 | :pathname "" | |
[15008] | 11 | :components ((:file "package"))) |
[15010] | 12 | (:module base |
13 | :pathname "" | |
[15008] | 14 | :components ((:file "abcl-asdf") |
[15010] | 15 | (:file "asdf-jar" :depends-on ("abcl-asdf"))) |
[15243] | 16 | :depends-on (package maven)) |
[15010] | 17 | (:module maven |
18 | :pathname "" | |
[15018] | 19 | :components ((:file "maven") |
20 | (:file "mvn-module")) | |
[15243] | 21 | :depends-on (package))) |
[15008] | 22 | :in-order-to ((test-op (test-op abcl-asdf-tests)))) |
[13804] | 23 |
Note: See TracBrowser
for help on using the repository browser.