Renamed `hibernate-orm-build` to `local-build-plugins` to be more visually distinguishable from the "real" `hibernate-` modules;

Moved the `local-build-plugins` inclusion inside the `pluginManagement {}` block per Gradle recommendations
This commit is contained in:
Steve Ebersole 2022-04-22 09:30:41 -05:00
parent 92fc03f803
commit c109650032
42 changed files with 3 additions and 3 deletions

View File

@ -1 +0,0 @@
rootProject.name = 'hibernate-orm-build'

View File

@ -0,0 +1 @@
rootProject.name = 'local-build-plugins'

View File

@ -13,6 +13,8 @@ pluginManagement {
url = uri( "${gradle.gradleUserHomeDir}/tmp/plugins" )
}
}
includeBuild 'local-build-plugins'
}
plugins {
@ -135,8 +137,6 @@ else {
logger.lifecycle "Java versions for main code: " + gradle.ext.javaVersions.main
logger.lifecycle "Java versions for tests: " + gradle.ext.javaVersions.test
includeBuild('hibernate-orm-build')
include 'hibernate-core'
include 'hibernate-testing'