source: tags/1.0.0/abcl/contrib/jss/jss.asd

Last change on this file was 13431, checked in by Mark Evenson, 13 years ago

Allow ASDF definitions for JAR-FILE to include ".jar".

This increases compatibility with the original version of JSS.

The only possible situation where this doesn't make sense would be if
a jar where to end in something other than ".jar", like perhaps ".zip"
or ".war". In this case, additional ASDF classes should be defined
extending JAR-FILE.

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.1"
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.