| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Starting with development of version 4.0, Hibernate uses Gradle as its build tool.
This README describes some of the basics developers and contributors new to Gradle need to know to get productive quickly.
git clone git://github.com/hibernate/hibernate-orm.git cd hibernate-orm ./gradlew clean build
If you are having problems with unresolved dependencies you need to configure access to the JBoss Nexus repository (see below).
Gradle uses the concept of build tasks (equivalent to Ant targets). You can get a list of available tasks via
gradle tasks
or if using gradle wrapper
./gradlew tasks
To execute a task across all modules, simply perform that task from the root directory. Gradle will visit each subproject and execute that task if the subproject defines it.
To execute a task in a specific module you can either:
| Back | FazBrowse Home | New Git URL |