2015-03-31 13:01:57 -05:00
|
|
|
if ( !JavaVersion.current().java8Compatible ) {
|
|
|
|
throw new GradleException( "Gradle must be run with Java 8" )
|
|
|
|
}
|
|
|
|
|
2010-10-08 20:20:10 -05:00
|
|
|
include 'hibernate-core'
|
2013-11-26 17:48:25 -06:00
|
|
|
include 'hibernate-testing'
|
2010-10-09 13:02:49 -05:00
|
|
|
include 'hibernate-entitymanager'
|
2010-10-09 13:24:27 -05:00
|
|
|
include 'hibernate-envers'
|
2011-07-23 15:39:27 +02:00
|
|
|
include 'hibernate-spatial'
|
2010-10-08 20:20:10 -05:00
|
|
|
|
2015-03-31 13:01:57 -05:00
|
|
|
include 'hibernate-java8'
|
2015-03-24 16:01:15 -05:00
|
|
|
|
2015-03-23 15:27:02 -05:00
|
|
|
include 'hibernate-osgi'
|
2013-01-23 18:22:03 -05:00
|
|
|
|
2010-10-09 13:27:47 -05:00
|
|
|
include 'hibernate-c3p0'
|
2010-10-09 13:31:54 -05:00
|
|
|
include 'hibernate-proxool'
|
2014-03-17 16:33:44 -04:00
|
|
|
include 'hibernate-hikaricp'
|
2010-10-09 13:27:47 -05:00
|
|
|
|
2010-10-09 13:44:08 -05:00
|
|
|
include 'hibernate-ehcache'
|
2010-10-09 13:55:13 -05:00
|
|
|
include 'hibernate-infinispan'
|
2013-10-25 21:27:45 +02:00
|
|
|
|
2013-11-13 18:23:48 -06:00
|
|
|
include 'documentation'
|
|
|
|
include 'release'
|
|
|
|
|
2013-10-25 21:27:45 +02:00
|
|
|
include 'metamodel-generator'
|
|
|
|
project(':metamodel-generator').projectDir = new File(rootProject.projectDir, "tooling/metamodel-generator")
|
2015-03-23 14:36:41 -05:00
|
|
|
project(':metamodel-generator').name = 'hibernate-jpamodelgen'
|
2013-10-25 21:27:45 +02:00
|
|
|
|
2013-07-19 15:53:20 +01:00
|
|
|
include 'hibernate-gradle-plugin'
|
2013-11-13 18:23:48 -06:00
|
|
|
project(':hibernate-gradle-plugin').projectDir = new File(rootProject.projectDir, "tooling/hibernate-gradle-plugin")
|
2013-10-25 21:27:45 +02:00
|
|
|
|
2015-03-26 01:41:23 +00:00
|
|
|
include 'hibernate-enhance-maven-plugin'
|
|
|
|
project(':hibernate-enhance-maven-plugin').projectDir = new File(rootProject.projectDir, "tooling/hibernate-enhance-maven-plugin")
|
2010-10-12 15:39:33 -05:00
|
|
|
|
2010-10-08 20:20:10 -05:00
|
|
|
rootProject.children.each { project ->
|
|
|
|
project.buildFileName = "${project.name}.gradle"
|
|
|
|
assert project.projectDir.isDirectory()
|
2013-11-13 18:23:48 -06:00
|
|
|
assert project.buildFile.exists()
|
2010-10-08 20:20:10 -05:00
|
|
|
assert project.buildFile.isFile()
|
2011-03-22 23:39:53 +08:00
|
|
|
}
|