source: trunk/abcl/contrib/abcl-asdf/package.lisp

Last change on this file was 15657, checked in by Mark Evenson, 14 months ago

abcl-asdf: provide restart for installing Maven

Not as useful as one might think, as ASDF apparently swallows all
conditions.

File size: 782 bytes
Line 
1(in-package :cl-user)
2
3(defpackage abcl-asdf
4  (:use cl)
5  (:import-from :abcl/build
6                #:split-string)
7  (:export 
8;;; Public API
9   #:resolve
10
11
12   ;; Configuring Maven
13
14   #:with-aether
15
16   #:ensure-mvn-version
17   
18   #:find-mvn
19   #:mvn-version
20
21   #:*mvn-directory*
22
23   #:init
24   #:make-local-maven
25
26   ;; condition
27   #:no-aether-maven-libs
28   
29
30;;; "Internal" API
31   #:resolve-dependencies
32   #:resolve-artifact
33
34;;;; Maven
35   #:*mvn-libs-directory*
36   #:*maven-http-proxy*
37   #:*default-repository*
38   #:make-remote-repository
39   #:*maven-remote-repository*
40   #:resolve-multiple-maven-dependencies
41
42   #:as-classpath
43
44   #:add-directory-jars-to-class-path
45   #:need-to-add-directory-jar?
46   
47   #:*added-to-classpath*
48   #:*inhibit-add-to-classpath*))
49
50
51
52
53
54
55
Note: See TracBrowser for help on using the repository browser.