Changeset 13862
- Timestamp:
- 02/06/12 18:20:25 (11 years ago)
- Location:
- trunk/abcl/contrib/abcl-asdf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/abcl-asdf/abcl-asdf.lisp
r13861 r13862 15 15 component) 16 16 17 ;;; We inter pret compilation to ensure that load-op will succeed17 ;;; We intercept compilation to ensure that load-op will succeed 18 18 (defmethod perform ((op compile-op) (c mvn)) 19 19 (maybe-parse-mvn c) … … 55 55 (in-package #:abcl-asdf) 56 56 57 (defun satisfy (mvn-component) 57 (defgeneric satisfy (something) 58 :documentation "Returns a string in JVM CLASSPATH format as entries delimited by classpath separator string." 59 60 (defmethod satisfy ((mvn-component asdf::mvn)) 58 61 "Resolve all runtime dependencies of MVN-COMPONENT. 59 62 -
trunk/abcl/contrib/abcl-asdf/maven-embedder.lisp
r13860 r13862 369 369 370 370 371 ;;; "log4j:log4j:1.9.2" or "log4j:log4j" 372 (defmethod satisfy ((string t)) 373 (let ((result (split-string string ":"))) 374 (cond 375 ((<= 2 (length result) 3) 376 (apply #'resolve-dependencies result))))) 377
Note: See TracChangeset
for help on using the changeset viewer.