Skip to content

Developer Guide

gyk4j edited this page Oct 5, 2023 · 2 revisions

This is for software developers who would like to review or customize WRECK.

Downloading the Source Codes

git clone https://github.com/gyk4j/wreck.git

Import the Maven project into your preferred IDE (e.g. Eclipse, Apache NetBeans, IntelliJ IDEA) as required.

Building from Command Line

Assuming Apache Maven is already installed.

cd wreck
mvn clean package

Find the executable wreck-x.x.x-SNAPSHOT.jar in wreck\target folder.

Building from Eclipse IDE

  • In Package Explorer, select wreck project.
  • Right-click and click Maven > Update Project...
  • Click OK in Update Maven Project dialog to download required library dependencies.
  • Right-click and click Run As > Maven build...
  • Type clean package in Goals text box.
  • Click Run in Edit Configuration dialog box.
  • Find the executable wreck-x.x.x-SNAPSHOT.jar in wreck\target folder.

Building with other IDEs?

Please consult the appropriate documentations on how to run a Maven build.