source: tags/1.2.1/abcl/contrib/abcl-asdf/packages.lisp

Last change on this file was 14504, checked in by Mark Evenson, 11 years ago

Promote ABCL-ASDF:ENSURE-MVN-VERSION as primary API that Maven can be executed.

Returns the found (MAJOR MINOR PATCH) as the second value.

Adding support for test framework (use :RT).

File size: 724 bytes
Line 
1(defpackage #:abcl-asdf
2  (:use :cl)
3  (:export 
4;;; Public API
5   #:resolve
6
7   #:ensure-mvn-version
8
9;;; Leaning towards deprecation
10   #:resolve-dependencies
11   #:resolve-artifact
12
13   #:find-mvn
14
15   #:*mvn-directory*
16
17   #:init
18
19;;; ASDF
20;;;   #:iri #:mvn
21;;;   #:ensure-parsed-mvn
22
23;;; "Internal" API
24
25;;;; Maven
26   #:*mvn-libs-directory*
27   #:*maven-http-proxy*
28   #:make-remote-repository
29   #:*maven-remote-repository*
30   #:*maven-verbose*
31
32   #:resolve-artifact
33   #:resolve-dependencies
34
35   #:as-classpath
36
37   #:add-directory-jars-to-class-path
38   #:need-to-add-directory-jar?
39   
40   #:*added-to-classpath*
41   #:*inhibit-add-to-classpath*))
42
43(defpackage #:abcl-asdf-test
44  (:use :cl :abcl-asdf)
45  (:export #:run))
Note: See TracBrowser for help on using the repository browser.