2015-05-19 00:23:35 -04:00
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
|
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
|
|
*/
|
2020-04-02 10:27:06 -04:00
|
|
|
|
2021-07-19 17:45:50 -04:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
maven {
|
|
|
|
name = 'localPluginRepository'
|
|
|
|
url = uri( "${gradle.gradleUserHomeDir}/tmp/plugins" )
|
|
|
|
}
|
|
|
|
}
|
2022-04-22 10:30:41 -04:00
|
|
|
|
|
|
|
includeBuild 'local-build-plugins'
|
2021-07-19 17:45:50 -04:00
|
|
|
}
|
|
|
|
|
2020-04-02 10:27:06 -04:00
|
|
|
plugins {
|
2022-04-22 19:40:06 -04:00
|
|
|
id 'org.hibernate.orm.build.env-settings'
|
2023-07-31 01:14:04 -04:00
|
|
|
id 'com.gradle.enterprise' version '3.14.1'
|
2023-07-24 01:13:48 -04:00
|
|
|
id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.11.1'
|
2020-04-02 10:27:06 -04:00
|
|
|
}
|
|
|
|
|
2022-03-15 10:39:07 -04:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-02-23 07:18:03 -05:00
|
|
|
// Needed for the RC versions of Jakarta Persistence
|
|
|
|
maven {
|
|
|
|
url "https://jakarta.oss.sonatype.org/content/repositories/releases/"
|
|
|
|
}
|
|
|
|
// Needed for the SNAPSHOT versions of Jakarta Persistence
|
|
|
|
maven {
|
|
|
|
url "https://jakarta.oss.sonatype.org/content/repositories/snapshots/"
|
|
|
|
}
|
2022-03-15 10:39:07 -04:00
|
|
|
|
|
|
|
//Allow loading additional dependencies from a local path;
|
|
|
|
//useful to load JDBC drivers which can not be distributed in public.
|
|
|
|
if (System.env['ADDITIONAL_REPO'] != null) {
|
|
|
|
flatDir {
|
|
|
|
dirs "${System.env.ADDITIONAL_REPO}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-22 19:40:06 -04:00
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
versionCatalogs {
|
2023-08-07 21:05:47 -04:00
|
|
|
jdks {
|
|
|
|
version( "baseline", "11" )
|
|
|
|
|
|
|
|
// Gradle does bytecode transformation on tests.
|
|
|
|
// You can't use bytecode higher than what Gradle supports, even with toolchains.
|
|
|
|
version( "maxSupportedBytecode", "21" )
|
|
|
|
}
|
2022-04-22 19:40:06 -04:00
|
|
|
libs {
|
2023-07-31 11:34:57 -04:00
|
|
|
def antlrVersion = "4.10.1"
|
2023-08-04 10:44:40 -04:00
|
|
|
def byteBuddyVersion = "1.14.5"
|
2023-07-31 11:34:57 -04:00
|
|
|
def classmateVersion = "1.5.1"
|
|
|
|
def geolatteVersion = "1.8.2"
|
|
|
|
def hcannVersion = "6.0.6.Final"
|
|
|
|
def jandexVersion = "3.1.2"
|
|
|
|
def jacksonVersion = "2.14.1"
|
|
|
|
def jbossLoggingVersion = "3.5.0.Final"
|
|
|
|
def jbossLoggingToolVersion = "2.2.1.Final"
|
|
|
|
|
|
|
|
def agroalVersion = "2.0"
|
|
|
|
def c3poVersion = "0.9.5.5"
|
|
|
|
def hikaricpVersion = "3.2.0"
|
|
|
|
def proxoolVersion = "0.8.3"
|
|
|
|
def viburVersion = "25.0"
|
|
|
|
|
|
|
|
def jcacheVersion = "1.0.0"
|
|
|
|
def ehcache3Version = "3.10.8"
|
|
|
|
|
|
|
|
def micrometerVersion = "1.10.4"
|
|
|
|
|
|
|
|
def hibernateValidatorVersion = "8.0.0.Final"
|
|
|
|
|
|
|
|
// these versions are referenced directly in build scripts
|
|
|
|
version( "byteBuddy", byteBuddyVersion )
|
|
|
|
version( "vibur", viburVersion )
|
|
|
|
|
|
|
|
library( "antlr", "org.antlr", "antlr4" ).version( antlrVersion )
|
|
|
|
library( "antlrRuntime", "org.antlr", "antlr4-runtime" ).version( antlrVersion)
|
|
|
|
|
|
|
|
library( "byteBuddy", "net.bytebuddy", "byte-buddy" ).version( byteBuddyVersion )
|
|
|
|
library( "byteBuddyAgent", "net.bytebuddy", "byte-buddy-agent" ).version( byteBuddyVersion )
|
|
|
|
|
|
|
|
library( "logging", "org.jboss.logging", "jboss-logging" ).version( jbossLoggingVersion )
|
|
|
|
library( "loggingAnnotations", "org.jboss.logging", "jboss-logging-annotations" ).version( jbossLoggingToolVersion )
|
|
|
|
library( "loggingProcessor", "org.jboss.logging", "jboss-logging-processor" ).version( jbossLoggingToolVersion )
|
|
|
|
|
|
|
|
library( "hcann", "org.hibernate.common", "hibernate-commons-annotations" ).version( hcannVersion )
|
|
|
|
library( "jandex", "io.smallrye", "jandex" ).version( jandexVersion )
|
|
|
|
library( "classmate", "com.fasterxml", "classmate" ).version( classmateVersion )
|
|
|
|
|
|
|
|
library( "jackson", "com.fasterxml.jackson.core", "jackson-databind" ).version( jacksonVersion )
|
|
|
|
library( "jacksonXml", "com.fasterxml.jackson.dataformat", "jackson-dataformat-xml" ).version( jacksonVersion )
|
|
|
|
library( "jacksonJsr310", "com.fasterxml.jackson.datatype", "jackson-datatype-jsr310" ).version( jacksonVersion )
|
|
|
|
library( "validator", "org.hibernate.validator", "hibernate-validator" ).version( hibernateValidatorVersion )
|
|
|
|
|
|
|
|
library( "agroal", "io.agroal", "agroal-api" ).version( agroalVersion )
|
|
|
|
library( "agroalPool", "io.agroal", "agroal-pool" ).version( agroalVersion )
|
|
|
|
|
|
|
|
library( "c3p0", "com.mchange", "c3p0" ).version( c3poVersion )
|
|
|
|
|
|
|
|
library( "hikaricp", "com.zaxxer", "HikariCP" ).version( hikaricpVersion )
|
|
|
|
|
|
|
|
library( "proxool", "proxool", "proxool" ).version( proxoolVersion )
|
|
|
|
|
|
|
|
library( "vibur", "org.vibur", "vibur-dbcp" ).version( viburVersion )
|
|
|
|
|
|
|
|
library( "geolatte", "org.geolatte", "geolatte-geom" ).version( geolatteVersion )
|
|
|
|
|
|
|
|
library( "jcache", "javax.cache", "cache-api" ).version( jcacheVersion )
|
|
|
|
library( "ehcache3", "org.ehcache", "ehcache" ).version( ehcache3Version )
|
|
|
|
|
|
|
|
library( "micrometer", "io.micrometer", "micrometer-core" ).version( micrometerVersion )
|
|
|
|
|
|
|
|
library( "ant", "org.apache.ant", "ant" ).version( "1.8.2" )
|
2022-04-22 19:40:06 -04:00
|
|
|
}
|
|
|
|
jakartaLibs {
|
2022-05-09 20:33:30 -04:00
|
|
|
// `jakartaJpaVersion` comes from the local-build-plugins to allow for command-line overriding of the JPA version to use
|
2023-07-31 11:34:57 -04:00
|
|
|
def jpaVersion = "${jakartaJpaVersion}"
|
|
|
|
|
|
|
|
def annotationVersion = "2.1.1"
|
|
|
|
def cdiVersion = "4.0.1"
|
|
|
|
def elVersion = "5.0.0"
|
|
|
|
def injectVersion = "2.0.1"
|
|
|
|
def interceptorsVersion = "2.1.0"
|
|
|
|
def jaccVersion = "2.1.0"
|
|
|
|
def jaxbApiVersion = "4.0.0"
|
|
|
|
def jaxbRuntimeVersion = "4.0.2"
|
|
|
|
def jsonbApiVersion = "3.0.0"
|
|
|
|
def jsonbRuntimeVersion = "3.0.2"
|
|
|
|
def jtaVersion = "2.0.1"
|
|
|
|
def validationVersion = "3.0.2"
|
|
|
|
def xjcVersion = jaxbRuntimeVersion
|
|
|
|
|
|
|
|
library( "jpa", "jakarta.persistence", "jakarta.persistence-api" ).version( jpaVersion )
|
|
|
|
library( "jta", "jakarta.transaction", "jakarta.transaction-api" ).version( jtaVersion )
|
|
|
|
|
|
|
|
library( "validation", "jakarta.validation", "jakarta.validation-api" ).version( validationVersion )
|
|
|
|
library( "jacc", "jakarta.authorization", "jakarta.authorization-api" ).version( jaccVersion )
|
|
|
|
library( "cdi", "jakarta.enterprise", "jakarta.enterprise.cdi-api" ).version( cdiVersion )
|
|
|
|
library( "annotation", "jakarta.annotation", "jakarta.annotation-api" ).version( annotationVersion )
|
|
|
|
library( "interceptors", "jakarta.interceptor", "jakarta.interceptor-api" ).version( interceptorsVersion )
|
|
|
|
library( "jsonbApi", "jakarta.json.bind", "jakarta.json.bind-api" ).version( jsonbApiVersion )
|
|
|
|
library( "jsonb", "org.eclipse", "yasson" ).version( jsonbRuntimeVersion )
|
|
|
|
library( "inject", "jakarta.inject", "jakarta.inject-api" ).version( injectVersion )
|
|
|
|
library( "jaxbApi", "jakarta.xml.bind", "jakarta.xml.bind-api" ).version( jaxbApiVersion )
|
|
|
|
library( "jaxb", "org.glassfish.jaxb", "jaxb-runtime" ).version( jaxbRuntimeVersion )
|
|
|
|
library( "xjc", "org.glassfish.jaxb", "jaxb-xjc" ).version( xjcVersion )
|
|
|
|
library( "el", "org.glassfish.expressly", "expressly" ).version( elVersion )
|
2022-04-22 19:40:06 -04:00
|
|
|
}
|
|
|
|
testLibs {
|
2023-07-31 11:34:57 -04:00
|
|
|
def junit5Version = "5.9.2"
|
|
|
|
def junit4Version = "4.13.2"
|
|
|
|
|
|
|
|
def assertjVersion = "3.22.0"
|
|
|
|
def bytemanVersion = "4.0.20"
|
|
|
|
def jbossJtaVersion = "7.0.0.Final"
|
|
|
|
def jbossTxSpiVersion = "8.0.0.Final"
|
|
|
|
def log4jVersion = "2.17.1"
|
|
|
|
def mockitoVersion = "5.2.0"
|
|
|
|
//Compatible with JDK20
|
|
|
|
def shrinkwrapVersion = "1.2.6"
|
|
|
|
def shrinkwrapDescriptorsVersion = "2.0.0"
|
|
|
|
def weldVersion = "4.0.1.SP1"
|
|
|
|
def wildFlyTxnClientVersion = "2.0.0.Final"
|
|
|
|
def xapoolVersion = "1.5.0"
|
|
|
|
|
|
|
|
library( "junit5Api", "org.junit.jupiter", "junit-jupiter-api" ).version( junit5Version )
|
|
|
|
library( "junit5Engine", "org.junit.jupiter", "junit-jupiter-engine" ).version( junit5Version )
|
|
|
|
library( "junit5Params", "org.junit.jupiter", "junit-jupiter-params" ).version( junit5Version )
|
|
|
|
library( "junit4Engine", "org.junit.vintage", "junit-vintage-engine" ).version( junit5Version )
|
|
|
|
library( "junit4", "junit", "junit" ).version( junit4Version )
|
|
|
|
|
|
|
|
library( "assertjCore", "org.assertj", "assertj-core" ).version( assertjVersion )
|
|
|
|
library( "assertjApi", "org.assertj", "assertj-core-api" ).version( assertjVersion )
|
|
|
|
|
|
|
|
library( "log4j2", "org.apache.logging.log4j", "log4j-core" ).version( log4jVersion )
|
|
|
|
|
|
|
|
library( "shrinkwrap", "org.jboss.shrinkwrap", "shrinkwrap-impl-base" ).version( shrinkwrapVersion )
|
|
|
|
library( "shrinkwrapApi", "org.jboss.shrinkwrap", "shrinkwrap-api" ).version( shrinkwrapVersion )
|
|
|
|
library( "shrinkwrapDescriptors", "org.jboss.shrinkwrap.descriptors", "shrinkwrap-descriptors-impl-javaee" ).version( shrinkwrapDescriptorsVersion )
|
|
|
|
library( "shrinkwrapDescriptorsApi", "org.jboss.shrinkwrap.descriptors", "shrinkwrap-descriptors-api-javaee" ).version( shrinkwrapDescriptorsVersion )
|
|
|
|
|
|
|
|
library( "byteman", "org.jboss.byteman", "byteman" ).version( bytemanVersion )
|
|
|
|
library( "bytemanInstall", "org.jboss.byteman", "byteman-install" ).version( bytemanVersion )
|
|
|
|
library( "bytemanBmunit", "org.jboss.byteman", "byteman-bmunit" ).version( bytemanVersion )
|
|
|
|
|
|
|
|
library( "mockito", "org.mockito", "mockito-core" ).version( mockitoVersion )
|
|
|
|
library( "mockitoInline", "org.mockito", "mockito-inline" ).version( mockitoVersion )
|
|
|
|
|
|
|
|
library( "xapool", "com.experlog", "xapool" ).version( xapoolVersion )
|
|
|
|
library( "jbossJta", "org.jboss.narayana.jta", "narayana-jta" ).version( jbossJtaVersion )
|
|
|
|
library( "jbossTxSpi", "org.jboss", "jboss-transaction-spi" ).version( jbossTxSpiVersion )
|
|
|
|
library( "wildFlyTxnClient", "org.wildfly.transaction", "wildfly-transaction-client-jakarta" ).version( wildFlyTxnClientVersion )
|
|
|
|
|
|
|
|
library( "weld", "org.jboss.weld.se", "weld-se-shaded" ).version( weldVersion )
|
2022-04-22 19:40:06 -04:00
|
|
|
}
|
|
|
|
dbLibs {
|
2023-08-09 17:04:49 -04:00
|
|
|
def h2Version = overrideableVersion( "gradle.libs.versions.h2", "2.2.220" )
|
2023-07-31 11:34:57 -04:00
|
|
|
|
|
|
|
def db2Version = "11.5.8.0"
|
|
|
|
// Latest Derby version 10.16.1.1 only supports JDK 17+, but 10.15.2 should be compatible
|
|
|
|
def derbyVersion = overrideableVersion( "gradle.libs.versions.derby", "10.15.2.0" )
|
|
|
|
def firebirdVersion = "4.0.8.java11"
|
|
|
|
def hanaVersion = "2.16.14"
|
|
|
|
def h2gisVersion = overrideableVersion( "gradle.libs.versions.h2gis", "2.2.0" )
|
|
|
|
def hsqldbVersion = overrideableVersion( "gradle.libs.versions.hsqldb", "2.7.2" )
|
|
|
|
def informixVersion = "4.10.12"
|
|
|
|
def mariadbVersion = "2.7.9"
|
|
|
|
def mssqlVersion = "12.2.0.jre11"
|
|
|
|
def mysqlVersion = "8.0.33"
|
|
|
|
def oracleVersion = "23.2.0.0"
|
|
|
|
def pgsqlVersion = "42.6.0"
|
|
|
|
def sybaseVersion = "1.3.1"
|
|
|
|
def tidbVersion = mysqlVersion
|
|
|
|
|
|
|
|
library( "h2", "com.h2database", "h2" ).version( h2Version )
|
|
|
|
library( "h2gis", "org.orbisgis", "h2gis" ).version( h2gisVersion )
|
|
|
|
library( "hsqldb", "org.hsqldb", "hsqldb" ).version( hsqldbVersion )
|
|
|
|
library( "derby", "org.apache.derby", "derby" ).version( derbyVersion )
|
|
|
|
library( "postgresql", "org.postgresql", "postgresql" ).version( pgsqlVersion )
|
|
|
|
library( "cockroachdb", "org.postgresql", "postgresql" ).version( pgsqlVersion )
|
|
|
|
library( "mysql", "com.mysql", "mysql-connector-j" ).version( mysqlVersion )
|
|
|
|
library( "tidb", "com.mysql", "mysql-connector-j" ).version( tidbVersion )
|
|
|
|
library( "mariadb", "org.mariadb.jdbc", "mariadb-java-client" ).version( mariadbVersion )
|
|
|
|
library( "oracle", "com.oracle.database.jdbc", "ojdbc11" ).version( oracleVersion )
|
|
|
|
library( "oracleXml", "com.oracle.database.xml", "xdb" ).version( oracleVersion )
|
|
|
|
library( "oracleXmlParser", "com.oracle.database.xml", "xmlparserv2" ).version( oracleVersion )
|
|
|
|
library( "mssql", "com.microsoft.sqlserver", "mssql-jdbc" ).version( mssqlVersion )
|
|
|
|
library( "db2", "com.ibm.db2", "jcc" ).version( db2Version )
|
|
|
|
library( "hana", "com.sap.cloud.db.jdbc", "ngdbc" ).version( hanaVersion )
|
|
|
|
library( "sybase", "net.sourceforge.jtds", "jtds" ).version( sybaseVersion )
|
|
|
|
library( "informix", "com.ibm.informix", "jdbc" ).version( informixVersion )
|
|
|
|
library( "firebird", "org.firebirdsql.jdbc", "jaybird" ).version( firebirdVersion )
|
2022-04-22 19:40:06 -04:00
|
|
|
}
|
|
|
|
mavenLibs {
|
2023-07-31 11:34:57 -04:00
|
|
|
def mavenCoreVersion = "3.8.1"
|
|
|
|
def mavenVersion = "3.0.5"
|
|
|
|
def mavenPluginToolsVersion = "3.2"
|
|
|
|
|
|
|
|
library( "mavenCore", "org.apache.maven", "maven-core" ).version( mavenCoreVersion )
|
|
|
|
library( "mavenArtifact", "org.apache.maven", "maven-artifact" ).version( mavenVersion )
|
|
|
|
library( "mavenPlugin", "org.apache.maven", "maven-plugin-api" ).version( mavenVersion )
|
|
|
|
library( "mavenPluginTools", "org.apache.maven.plugin-tools", "maven-plugin-annotations" ).version( mavenPluginToolsVersion )
|
2022-04-22 19:40:06 -04:00
|
|
|
}
|
|
|
|
}
|
2022-03-15 10:39:07 -04:00
|
|
|
}
|
2021-05-25 17:11:31 -04:00
|
|
|
|
2023-07-31 11:34:57 -04:00
|
|
|
String overrideableVersion(String settingName, String defaultVersion) {
|
|
|
|
String overridden = settings.ext.find( settingName )
|
|
|
|
if ( overridden != null ) {
|
|
|
|
return overridden
|
|
|
|
}
|
|
|
|
return defaultVersion
|
|
|
|
}
|
|
|
|
|
2022-03-15 10:39:07 -04:00
|
|
|
rootProject.name = 'hibernate-orm'
|
2021-06-26 09:46:09 -04:00
|
|
|
|
2021-05-24 13:25:53 -04:00
|
|
|
apply from: file( 'gradle/gradle-enterprise.gradle' )
|
|
|
|
|
2021-11-26 11:24:34 -05:00
|
|
|
if ( !JavaVersion.current().java11Compatible ) {
|
|
|
|
throw new GradleException( "Gradle must be run with Java 11 or later" )
|
2019-10-23 02:45:47 -04:00
|
|
|
}
|
|
|
|
|
2021-07-26 14:51:22 -04:00
|
|
|
buildCache {
|
2021-11-30 08:17:47 -05:00
|
|
|
local {
|
|
|
|
// do not use local build cache for CI jobs, period!
|
2022-02-01 10:40:31 -05:00
|
|
|
enabled = !settings.ext.isCiEnvironment
|
2021-11-30 08:17:47 -05:00
|
|
|
}
|
|
|
|
remote(HttpBuildCache) {
|
|
|
|
enabled = true
|
2022-02-01 10:40:31 -05:00
|
|
|
push = settings.ext.populateRemoteBuildCache
|
2021-11-30 08:17:47 -05:00
|
|
|
url = 'https://ge.hibernate.org/cache/'
|
|
|
|
}
|
2021-07-26 14:51:22 -04:00
|
|
|
}
|
|
|
|
|
2010-10-08 21:20:10 -04:00
|
|
|
include 'hibernate-core'
|
2013-11-26 18:48:25 -05:00
|
|
|
include 'hibernate-testing'
|
2021-04-22 12:15:45 -04:00
|
|
|
|
2010-10-09 14:24:27 -04:00
|
|
|
include 'hibernate-envers'
|
2021-09-22 18:52:06 -04:00
|
|
|
include 'hibernate-spatial'
|
2016-06-23 03:34:34 -04:00
|
|
|
|
2022-04-22 19:40:06 -04:00
|
|
|
include 'hibernate-platform'
|
|
|
|
|
2021-04-13 12:13:30 -04:00
|
|
|
include 'hibernate-community-dialects'
|
2010-10-08 21:20:10 -04:00
|
|
|
|
2010-10-09 14:27:47 -04:00
|
|
|
include 'hibernate-c3p0'
|
2010-10-09 14:31:54 -04:00
|
|
|
include 'hibernate-proxool'
|
2014-03-17 16:33:44 -04:00
|
|
|
include 'hibernate-hikaricp'
|
2018-01-13 07:48:46 -05:00
|
|
|
include 'hibernate-vibur'
|
2017-09-05 19:49:17 -04:00
|
|
|
include 'hibernate-agroal'
|
2010-10-09 14:27:47 -04:00
|
|
|
|
2021-11-16 11:15:58 -05:00
|
|
|
include 'hibernate-jcache'
|
2021-05-13 14:11:38 -04:00
|
|
|
|
2020-11-17 17:39:43 -05:00
|
|
|
include 'hibernate-micrometer'
|
2020-02-13 06:41:04 -05:00
|
|
|
include 'hibernate-graalvm'
|
2021-11-26 11:24:34 -05:00
|
|
|
include 'hibernate-integrationtest-java-modules'
|
2019-05-24 03:26:01 -04:00
|
|
|
|
2013-11-13 19:23:48 -05:00
|
|
|
include 'documentation'
|
|
|
|
include 'release'
|
|
|
|
|
2013-10-25 15:27:45 -04:00
|
|
|
include 'metamodel-generator'
|
|
|
|
project(':metamodel-generator').projectDir = new File(rootProject.projectDir, "tooling/metamodel-generator")
|
2015-03-23 15:36:41 -04:00
|
|
|
project(':metamodel-generator').name = 'hibernate-jpamodelgen'
|
2013-10-25 15:27:45 -04:00
|
|
|
|
2022-03-15 21:10:17 -04:00
|
|
|
include 'hibernate-gradle-plugin'
|
|
|
|
project(':hibernate-gradle-plugin').projectDir = new File(rootProject.projectDir, "tooling/hibernate-gradle-plugin")
|
2020-10-15 18:20:30 -04:00
|
|
|
|
2015-03-25 21:41:23 -04:00
|
|
|
include 'hibernate-enhance-maven-plugin'
|
|
|
|
project(':hibernate-enhance-maven-plugin').projectDir = new File(rootProject.projectDir, "tooling/hibernate-enhance-maven-plugin")
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2021-09-27 15:07:01 -04:00
|
|
|
include 'hibernate-ant'
|
|
|
|
project(':hibernate-ant').projectDir = new File(rootProject.projectDir, "tooling/hibernate-ant")
|
|
|
|
|
2021-06-22 10:53:21 -04:00
|
|
|
|
2010-10-08 21:20:10 -04:00
|
|
|
rootProject.children.each { project ->
|
|
|
|
project.buildFileName = "${project.name}.gradle"
|
|
|
|
assert project.projectDir.isDirectory()
|
2013-11-13 19:23:48 -05:00
|
|
|
assert project.buildFile.exists()
|
2010-10-08 21:20:10 -04:00
|
|
|
assert project.buildFile.isFile()
|
2021-05-24 12:49:11 -04:00
|
|
|
}
|
2022-04-22 19:40:06 -04:00
|
|
|
include 'hibernate-platform'
|
2021-09-27 15:07:01 -04:00
|
|
|
|