See Project Site for reports and api
- Run the command from console
mvn eclipse:eclipse
- If your build for myeclipse the command is
mvn eclipse:myeclipse
- If you need to undo the generation use
mvn eclipse:clean
- If your build for myeclipse the command is
- After the command is run you should be able to import the project as you normally do from the git repositories view or from. File -> Import -> Existing Projects into Workspace
- For more information about the changes Maven Eclipse Generator
- Java JDK 1.6
- Oracle Java 1.6 Download
- Rest Server will not build in JDK > 1.6
- Maven 2.2.1
- Clone full repo from git
- Navigate to the base directory of git repo.
- Run command 'mvn clean package'
- This will run all tests and should produce project artifacts
- Run
mvn clean site
from root of project
- Restlet 2.0.13
- Provides the basic REST server interfaces, including handling all the thread management
- Allows us to serve straight from a jar with no server additional server configuration
- Restlet Home Page
- Jackson
- Automatic conversion from Java Objects to JSON objects and back
- Currently our rest server uses no configuration and lets Jackson automatically convert
- Jackson Home Page
- JAXB
- Handles conversion from Java to XML and back
- Annotated objects in the Clue-Solver-Models module
- If adding a new object be sure to add it to jaxb.index for that package so that it can be created
- Part of standard JDK
- Enunciate
- Generates the API documentation including the active paths that can be connected to
- Generates the XML information such as examples
- Generates code that handles connection and conversion in C#, Java, and C
- Automatically runs from maven and outputs to
/target/site/wsdocs
- Enunciate Home Page
After running mvn clean site
the full API docs should be available in the directory
Clue-Solver-Rest/target/site/wsdocs/index.html
Navigating from this site will also allow you to download any of the generated code libraries
The site is full navigable from the html in the target directory, does not need to be deployed to a server