Changeset 13860
- Timestamp:
- 02/06/12 18:20:21 (11 years ago)
- Location:
- trunk/abcl/contrib/abcl-asdf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd
r13841 r13860 4 4 (defsystem :abcl-asdf 5 5 :author "Mark Evenson" 6 :version "0. 6.0"6 :version "0.7.0" 7 7 :depends-on (jss) 8 8 :components -
trunk/abcl/contrib/abcl-asdf/maven-embedder.lisp
r13859 r13860 212 212 213 213 (defun make-proxy () 214 "Return an org.sonatype.aether.repository.Proxy instance initialized f orm *MAVEN-HTTP-PROXY*."214 "Return an org.sonatype.aether.repository.Proxy instance initialized from *MAVEN-HTTP-PROXY*." 215 215 (unless *maven-http-proxy* 216 216 (warn "No proxy specified in *MAVEN-HTTP-PROXY*") … … 256 256 ;;; TODO change this to work on artifact strings like log4j:log4j:jar:1.2.16 257 257 (defun resolve-artifact (group-id artifact-id &optional (version "LATEST" versionp)) 258 " Directly resolve Maven dependencies for item with GROUP-ID and ARTIFACT-ID at VERSION, ignoring dependencies.258 "Resolve artifact to location on the local filesystem. 259 259 260 260 Declared dependencies are not attempted to be located. … … 273 273 (#"setArtifact" artifact-request artifact) 274 274 (#"addRepository" artifact-request (ensure-remote-repository)) 275 (#"toString" (#"resolveArtifact" (ensure-repository-system) (ensure-session) artifact-request)))) 275 (#"toString" (#"getFile" 276 (#"getArtifact" (#"resolveArtifact" (ensure-repository-system) 277 (ensure-session) artifact-request)))))) 276 278 277 279 (defun make-remote-repository (id type url)
Note: See TracChangeset
for help on using the changeset viewer.