source: trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd @ 13431

Last change on this file since 13431 was 13431, checked in by Mark Evenson, 12 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: 395 bytes
Line 
1;;;; -*- Mode: LISP -*-
2(in-package :asdf)
3
4(defsystem :abcl-asdf
5  :author "Mark Evenson"
6  :version "0.3.1"
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.