Last change
on this file since 13804 was
13804,
checked in by Mark Evenson, 11 years ago
|
Fix for maven-3.0.4.
Part of the process of cleaning up ABCL-ASDF to work with more Maven
versions.
Seems to be failing for OS X Maven 3.0.4, so need to do a round of testing.
Add system definition of ABCL-ASDF-TEST which becomes the behavior for
invoking ASDF:TEST-SYSTEM on ABCL-ASDF. Really update to version
"0.5.0".
Correct misspellings.
TODO: figure out a list of repos to iteratively search.
TODO: overload the system defintion version mechanism to allow
non-integer values, or just use the IRI class?
TODO: be more verbose on searching/downloading Maven artifacts as it
can be quite slow for large amounts of artifacts.
|
File size:
642 bytes
|
Line | |
---|
1 | #| |
---|
2 | (abcl-asdf:resolve-dependencies "log4j" "log4j") |
---|
3 | |
---|
4 | (abcl-asdf:resolve-dependencies "org.armedbear.lisp" "abcl") |
---|
5 | |
---|
6 | |# |
---|
7 | |
---|
8 | ; TODO figure out what sort of test framework we can hook in. Probably ABCL-RT |
---|
9 | |
---|
10 | (in-package :abcl-asdf-test) |
---|
11 | |
---|
12 | (deftest LOG4J.1 |
---|
13 | (let ((result (abcl-asdf:resolve-dependencies "log4j" "log4j"))) |
---|
14 | (and result |
---|
15 | (format *standard-output* "~&~A~%" result) |
---|
16 | (type-p result 'cons))) |
---|
17 | t) |
---|
18 | |
---|
19 | |
---|
20 | (deftest ABCL.1 |
---|
21 | (let ((result (abcl-asdf:resolve-dependencies "org.armedbear.lisp" "abcl"))) |
---|
22 | (and result |
---|
23 | (format *standard-output* "~&~A~%" result) |
---|
24 | (type-p result 'cons))) |
---|
25 | t) |
---|
26 | |
---|
27 | |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.