Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Start building/using OpenHub framework is very easy:

  1. download sources from GitHub or clone Git repository

  2. call mvn package in the project directory 
  3. deploy openhub.war to application server from module war/target 

    Tip

    It is possible to use standalone mode of OpenHub, without servlet container.


  4. start calling (for example by SoupUI) test web services (from module openhub-example)
  5. look at Admin GUI at address http://localhost:8080/openhub/web/admin/console/ (default login is webUser/webPassword)
Warning

When you deploy war (not standalone version) then there is error in context configuration. Correct url http://localhost:8080/openhub/web/admin/console/ doesn't work at this moment, you have to deploy to the root context - we are working on the patch. Bug 

Jira Legacy
serverSystem JIRA
serverId5fb5aac0-20a0-345d-92b5-5cbf69580c27
keyOHFJIRA-81


If you want to start new project with OpenHub framework then look at How to start new project?

...

Tip

To speed up build time you can disable unit tests and JavaDoc generation: mvn install -DskipTests -Dmaven.javadoc.skip=true

You can also disable building admin console GUI (web module) at all:

  • disable specific profiles for building and cleaning GUI: mvn clean install -DskipTests -Dmaven.javadoc.skip=true -P'!full-build,!full-clean'
  • disable default profiles mvn clean install -DskipTests -Dmaven.javadoc.skip=true -DskipDefault=true