hibernate-orm/settings.gradle
Jeremy Whiting 85792026ae HHH-8777 Completed implementation of Maven Enhance Plugin fixing issue with
missing descriptor files. Mojo will automatically hook into build
lifecycle compile phase.
2014-02-04 10:06:39 -05:00

24 lines
549 B
Groovy

include 'hibernate-core'
include 'hibernate-testing'
include 'hibernate-entitymanager'
include 'hibernate-envers'
include 'hibernate-osgi'
include 'hibernate-c3p0'
include 'hibernate-proxool'
include 'hibernate-ehcache'
include 'hibernate-infinispan'
include 'hibernate-gradle-plugin'
include 'hibernate-enhance-maven-plugin'
include 'documentation'
include 'release'
rootProject.children.each { project ->
project.buildFileName = "${project.name}.gradle"
assert project.projectDir.isDirectory()
assert project.buildFile.isFile()
}