source: trunk/abcl/contrib/jss/jss.asd @ 13430

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: 378 bytes
Line 
1;;;; -*- Mode: LISP -*-
2(in-package :asdf)
3
4(defsystem :jss
5  :author "Alan Ruttenberg, Mark Evenson"
6  :version "3.0.0"
7  :components
8  ((:module base
9            :pathname "" :serial t
10            :components ((:file "packages")
11                         (:file "invoke")
12                         (:file "classpath")
13                         (:file "compat")))))
14
15
16
17
18   
19
20
Note: See TracBrowser for help on using the repository browser.