Last change
on this file was
14574,
checked in by Mark Evenson, 11 years ago
|
abcl-asdf/1.3.0: updated to work with maven-3.1.0.
Big thanks to Anton Vodonosov for the initial patch.
The code in maven-embedder.lisp should now work for all versions of
Maven greater than 3.0.3.
Added MAKE-ARTIFACT and MAKE-ARTIFACT-REQUEST for creating the
correponding Aether objects.
|
File size:
637 bytes
|
Line | |
---|
1 | (defpackage #:abcl-asdf |
---|
2 | (:use :cl) |
---|
3 | (:export |
---|
4 | ;;; Public API |
---|
5 | #:resolve |
---|
6 | |
---|
7 | #:ensure-mvn-version |
---|
8 | |
---|
9 | #:find-mvn |
---|
10 | |
---|
11 | #:*mvn-directory* |
---|
12 | |
---|
13 | #:init |
---|
14 | |
---|
15 | ;;; "Internal" API |
---|
16 | #:resolve-dependencies |
---|
17 | #:resolve-artifact |
---|
18 | |
---|
19 | ;;;; Maven |
---|
20 | #:*mvn-libs-directory* |
---|
21 | #:*maven-http-proxy* |
---|
22 | #:make-remote-repository |
---|
23 | #:*maven-remote-repository* |
---|
24 | #:*maven-verbose* |
---|
25 | |
---|
26 | #:resolve-artifact |
---|
27 | #:resolve-dependencies |
---|
28 | |
---|
29 | #:as-classpath |
---|
30 | |
---|
31 | #:add-directory-jars-to-class-path |
---|
32 | #:need-to-add-directory-jar? |
---|
33 | |
---|
34 | #:*added-to-classpath* |
---|
35 | #:*inhibit-add-to-classpath*)) |
---|
36 | |
---|
37 | (defpackage #:abcl-asdf-test |
---|
38 | (:use :cl :abcl-asdf) |
---|
39 | (:export #:run)) |
---|
Note: See
TracBrowser
for help on using the repository browser.