Web / Apache OFBiz Interview questions
What build tool does OFBiz use?
OFBiz builds and runs using Gradle, having migrated off Apache Ant in the 16.11 release series. The gradlew/gradlew.bat wrapper scripts are checked into the repository, so no separate Gradle install is required.
Common tasks include:
| Command | Purpose |
./gradlew cleanAll loadAll | Wipes and reloads the demo database |
./gradlew ofbiz | Starts the OFBiz server |
./gradlew testIntegration | Runs the integration test suite |
Gradle also manages plugin components, letting you pull in optional business apps from the plugins directory as separate, independently buildable modules, and it drives packaging tasks for creating deployable distributions once a build is ready to ship.
More Related questions...