Changeset 14700
- Timestamp:
- 04/27/14 14:17:38 (9 years ago)
- Location:
- branches/1.3.1/contrib/abcl-asdf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3.1/contrib/abcl-asdf/abcl-asdf.asd
r14615 r14700 3 3 (asdf:defsystem :abcl-asdf 4 4 :author "Mark Evenson" 5 :version "1.3. 0"6 :description "<> asdf:defsystem <urn:abcl.org/release/1.3.0/contrib/abcl-asdf#1. 1.0>"5 :version "1.3.1" 6 :description "<> asdf:defsystem <urn:abcl.org/release/1.3.0/contrib/abcl-asdf#1.3.1>" 7 7 :depends-on (jss) 8 8 :components -
branches/1.3.1/contrib/abcl-asdf/maven-embedder.lisp
r14575 r14700 108 108 109 109 (defun find-mvn-libs () 110 (let ((mvn (find-mvn))) 111 (unless mvn 112 (warn "Failed to find Maven3 libraries.") 113 (return-from find-mvn-libs nil)) 114 (truename (make-pathname 115 :defaults (merge-pathnames "../lib/" mvn) 116 :name nil :type nil)))) 117 110 (unless (find-mvn) 111 (warn "Failed to find Maven executable to determine Aether library location.")) 112 (some 113 (lambda (d) 114 (when (directory (merge-pathnames "maven-core-*.jar" d)) 115 (truename d))) 116 (list (make-pathname :defaults (merge-pathnames "../lib/" (find-mvn)) 117 :name nil :type nil) 118 #p"/usr/local/maven/lib/"))) ;; OpenBSD location suggested by Timo MyyrÀ 119 118 120 (defparameter *mvn-libs-directory* 119 121 nil … … 159 161 160 162 (defun init (&optional &key (force nil)) 161 "Run the initialization strategy to bootstrap a Maven dependency node." 163 "Run the initialization strategy to bootstrap a Maven dependency node. 164 165 Set *MVN-LIBS-DIRECTORY* to an explicit value before running this 166 function in order to bypass the dynamic introspection of the location 167 of the mvn executable with an explicit value." 162 168 (unless (or force *mvn-libs-directory*) 163 169 (setf *mvn-libs-directory* (find-mvn-libs)))
Note: See TracChangeset
for help on using the changeset viewer.