hibernate-orm/README.md

67 lines
2.4 KiB
Markdown
Raw Normal View History

2011-05-08 15:46:27 -04:00
How to build
============
2012-04-20 11:38:07 -04:00
*Starting with development of version 4.0, Hibernate uses [Gradle](http://gradle.org) as its build tool.*
2011-05-08 15:46:27 -04:00
2012-04-20 11:46:07 -04:00
This README describes some of the basics developers and contributors new to Gradle need to know to get productive quickly.
Quickstart
----------
git clone git://github.com/hibernate/hibernate-orm.git
cd hibernate-orm
./gradlew clean build
2012-04-20 11:46:07 -04:00
If you are having problems with unresolved dependencies you need to configure access to the JBoss Nexus repository
2012-04-20 11:48:09 -04:00
(see below).
2012-04-20 11:46:07 -04:00
2011-05-08 15:46:27 -04:00
Resources
---------
2012-04-20 11:38:07 -04:00
### General
2012-04-20 11:38:07 -04:00
* [Building Hibernate ORM](https://community.jboss.org/wiki/BuildingHibernateORM4x)
2012-04-20 11:38:07 -04:00
### JBoss Nexus
2011-09-30 06:35:16 -04:00
2012-04-20 11:38:07 -04:00
* [JBoss Nexus User Guide](http://community.jboss.org/wiki/MavenGettingStarted-Users) - explains how to set up _~/.m2/settings.xml_ to use JBoss Nexus repo.
2011-09-30 06:35:16 -04:00
2012-04-20 11:38:07 -04:00
### Gradle
* [Gradle User Guide](http://gradle.org/docs/current/userguide/userguide_single.html)
* [Gradle DSL Guide](http://gradle.org/docs/current/dsl/index.html)
Executing Tasks
---------------
Gradle uses the concept of build tasks (equivalent to Ant targets). You can get a list of available tasks
via
gradle --tasks
### Executing Tasks Across All Modules
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.
2012-04-20 11:38:07 -04:00
### Executing Tasks In Specific Module
To execute a task in a specific module you can either:
2012-04-20 11:38:07 -04:00
1. `cd` into that module directory and execute the task
2. name the "task path". For example, in order to run the tests for the _hibernate-core_ module from the root directory you could say `gradle hibernate-core:test`
2012-04-20 11:38:07 -04:00
### Common Java related tasks
* _build_ - Assembles (jars) and tests this project
* _buildDependents_ - Assembles and tests this project and all projects that depend on it. So think of running this in hibernnate-entitymanager, Gradle would assemble and test hibernate-entitymanager as well as hibernate-envers (because envers depends on entitymanager)
* _classes_ - Compiles the main classes
* _testClasses_ - Compiles the test classes
* _jar_ - Generates a jar archive with all the compiled classes
* _test_ - Runs the tests
* _uploadArchives_ - Think Maven deploy
* _install_ - Installs the project jar to your local maven cache (aka ~/.m2/repository)
* _eclipse_ - Generates an Eclipse project
* _idea_ - Generates an IntelliJ/IDEA project.
* _clean_ - Cleans the build directory