source: branches/streams/abcl/contrib/abcl-asdf/tests/log4j.asd

Last change on this file was 14364, checked in by Mark Evenson, 12 years ago

ASDF systems using the MVN component now load again.

log4j.asd example corrected as well.

FIND-MVN now emits a warning if it cannot actually find a Maven exectuable.

Thanks to Milos Negovanovic for identifying the problem with a patch.

Fixes #299.

File size: 449 bytes
Line 
1;;;; -*- Mode: LISP -*-
2
3(asdf:defsystem :log4j 
4  :defsystem-depends-on (abcl-asdf)
5  :components ((:module log4j.jar :components
6            ((:mvn "log4j/log4j/1.2.15")))
7   (:module source :pathname "" :components
8            ((:file "example"))
9            :depends-on (log4j.jar))))
10
11(defmethod perform ((o asdf:test-op) (s (eql (asdf:find-system :log4j))))
12  (asdf:load-system :log4j)
13  (eval (read-from-string "(cl-user::test-log4j.2)")))
Note: See TracBrowser for help on using the repository browser.