Last change
on this file since 13430 was
13430,
checked in by Mark Evenson, 12 years ago
|
Refactor ASDF extensions from JSS into ABCL-ASDF.
The JAR-FILE, JAR-DIRECTORY, and CLASS-FILE-DIRECTORY ASDF extensions
are now part of the ABCL-ASDF contrib as we aim to centralize all such
things in one place. *ADDED-TO-CLASSPATH* is now part of the
ABCL-ASDF package as well.
There is currently a (mostly) recursive relationship between JSS and
ABCL-ASDF, as each (mostly) requires the other for operation.
JSS:ENSURE-COMPATIBILITY will ensure that JSS continues to understand
the refactored extensions.
|
File size:
395 bytes
|
Line | |
---|
1 | ;;;; -*- Mode: LISP -*- |
---|
2 | (in-package :asdf) |
---|
3 | |
---|
4 | (defsystem :abcl-asdf |
---|
5 | :author "Mark Evenson" |
---|
6 | :version "0.3.0" |
---|
7 | :depends-on ("jss") |
---|
8 | :components |
---|
9 | ((:module base :pathname "" :components |
---|
10 | ((:file "abcl-asdf") |
---|
11 | (:file "asdf-jar" |
---|
12 | :depends-on ("abcl-asdf")) |
---|
13 | (:file "maven-embedder" |
---|
14 | :depends-on ("abcl-asdf" "asdf-jar")))))) |
---|
Note: See
TracBrowser
for help on using the repository browser.