Versions Compared

Key

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

...

If you haven't already checkout Apache OFBiz Framework on your machine, let's do it. Anyone can checkout or browse the source code in the OFBiz public GIT repository. If you don't have Git, to install it you can go here for instructions.

To clone the source code, simply use the following command (if you are using a GUI client, configure it appropriately):

  • ofbiz-framework branch

...

  • release18.12: $ git clone

...

...

  • ofbiz-framework
  • git branch release18.12: $ git checkout origin/

...

  • release18.12

Since

...

the release18.12 was split into

...

ofbiz-framework

...

and

...

ofbiz-plugins, the specialpurpose and hot-deploy directories have disappeared.
New components must be put in a plugins directory which works as was the hot-deploy directory.

For OFBiz existing components, check them out using the

...

Gradle tasks or the

...

GIT command

1.Checkout via Gradle tasks

To get all components use

...

pullAllPluginsSource. Beware this deletes a previously existing plugins directory.

Code Block
For Linux/Mac: $ ./gradlew pullAllPluginsSource

...


For Windows: > gradlew pullAllPluginsSource

2.Checkout via GIT command

  • ofbiz-plugins branch

...

  • release18.12: $ git clone

...

...

  • plugins
  • git branch

...

  • release18.12: $ git checkout origin/

...

  • release18.12

For more details refer Apache OFBiz Source Repository page.

Running Apache OFBiz

  • Using the command line, build and start OFBiz (with demo data), use command:

...