Last change
on this file since 13807 was
13807,
checked in by Mark Evenson, 11 years ago
|
Further fix for ABCL-ASDF load time failure.
Start separating out the public api by exporting and documenting symbols.
|
File size:
481 bytes
|
Line | |
---|
1 | (defpackage #:abcl-asdf |
---|
2 | (:use :cl) |
---|
3 | (:export |
---|
4 | ;;; Public API |
---|
5 | #:resolve-dependencies |
---|
6 | |
---|
7 | #:find-mvn |
---|
8 | |
---|
9 | #:*mvn-directory* |
---|
10 | |
---|
11 | #:init |
---|
12 | |
---|
13 | ;;; "Internal" API |
---|
14 | |
---|
15 | ;;;; Maven |
---|
16 | #:*mvn-libs-directory* |
---|
17 | |
---|
18 | #:satisfy |
---|
19 | #:as-classpath |
---|
20 | |
---|
21 | #:resolve-artifact |
---|
22 | |
---|
23 | #:add-directory-jars-to-class-path |
---|
24 | #:need-to-add-directory-jar? |
---|
25 | |
---|
26 | #:*added-to-classpath* |
---|
27 | #:*inhibit-add-to-classpath*)) |
---|
28 | |
---|
29 | (defpackage #:abcl-asdf-test |
---|
30 | (:use :cl #+nil :abcl-test-lisp) ;;; FIXME |
---|
31 | (:export #:run)) |
---|
Note: See
TracBrowser
for help on using the repository browser.