source: tags/1.5.0/contrib/jss/jss-tests.asd

Last change on this file was 15065, checked in by Mark Evenson, 7 years ago

Refactor JAVAPARSER dependencies out of JSS

JAVAPARSER needs ABCL-ASDF to load its Maven artifact, but ABCL-ASDF
needs JSS. Therefore we refactor these dependencies into the ASDF
infrastructure rather than dealing with CL:REQUIRE, which isn't going
to work anyways unless there is another mechanism to load Maven
artifacts.

The JAVAPARSER system is not working due to dependency on the missing
symbols CL-USER::REPLACE-ALL and CL-USER::TREE-REPLACE, but that was
the case before this patch as Alan mistakenly didn't include it in his
submitted patch series.

File size: 406 bytes
Line 
1;;;; -*- Mode: LISP -*-
2(defsystem jss-tests
3  :defsystem-depends-on (quicklisp-abcl
4                         prove-asdf)
5  :depends-on (jss
6               prove)
7  :components ((:module tests
8                        :pathname "t"
9                        :components ((:test-file "jss-tests"))))
10  :perform (asdf:test-op (op c)
11                         (uiop:symbol-call :prove-asdf 'run-test-system c)))
Note: See TracBrowser for help on using the repository browser.