joaoarthurbm / designwizard

DesignWizard (https://sites.google.com/site/designwizardhomepage/) supports automated inspection of Java programs in a higher level than ASM bytecode manipulator.
Other
17 stars 8 forks source link

add maven to designwizard (add pom.xml file) #19

Closed tacianosilva closed 8 years ago

tacianosilva commented 9 years ago

Add maven to designwizard and directories were not modified for the standard maven.

tacianosilva commented 9 years ago

The API GXL doesn't distributed in the maven repositories and it needs to be installed in local repository (Download GXL: http://gxl.sourceforge.net/).

Dependence was added to the system scope (not the best way).

<dependency>
    <groupId>net.sourceforge.gxl</groupId>
    <artifactId>gxl</artifactId>
    <version>0.92</version>
    <scope>system</scope>
    <systemPath>${basedir}/lib/gxl.jar</systemPath>
</dependency>

The best way is creating a maven repo inside the project. See the link: http://blog.valdaris.com/post/custom-jar/

tacianosilva commented 8 years ago

The API GXL was removed. The library was not used directly in the DesignWizard API.