Skip to content

Latest commit

 

History

History
 
 

spoon-decompiler

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Spoon-Decompiler

Spoon-decompiler is an extension of spoon that allow to work on bytecode by decompiling it (with your favorite decompiler, or one of those already included). This can be done offline with the help of JarLauncher, as well as at loadtime in an agent or a classLoader with the help of SpoonClassFileTransformer.

This module is released as a separated artifact. To use it with maven please add the following lines to your pom:

<!--latest stable release-->
<dependency>
    <groupId>fr.inria.gforge.spoon</groupId>
    <artifactId>spoon-decompiler</artifactId>
    <version>0.1.0</version>
</dependency>

or for the snapshot release:

<!--SNAPSHOT release-->
<dependency>
    <groupId>fr.inria.gforge.spoon</groupId>
    <artifactId>spoon-decompiler</artifactId>
    <version>0.1.0-SNAPSHOT</version>
</dependency>
<repositories>
	<repository>
      <id>maven.inria.fr-snapshot</id>
      <name>Maven Repository for Spoon Snapshots</name>
      <url>http://maven.inria.fr/artifactory/spoon-public-snapshot</url>
    </repository>
</repositories>