source: tags/1.5.0/contrib/abcl-introspect/objectweb.asd

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

Restore the ability SYSTEM:CHOOSE-ASSEMBLER to use Objectweb

The Objectweb disassembler has been moved into the ABCL-INTROSPECT
contrib where it can be rationally installed via ABCL-ASDF
encapsulation of Maven artifacts.

To enable the Objectweb disassembler use

(require :abcl-contrib)
(require :objectweb)

File size: 337 bytes
Line 
1(defsystem objectweb
2  :homepage "http://asm.ow2.org"
3  :defsystem-depends-on (abcl-asdf)
4  :components
5  ((:module maven
6            :components
7            ((:mvn "org.ow2.asm/asm-all/5.2")))
8   (:module source
9            :depends-on (maven)
10            :pathname ""
11            :components
12            ((:file "objectweb")))))
13
14
15
16
17
18
Note: See TracBrowser for help on using the repository browser.