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:
parent
92fc03f803
commit
c109650032
|
@ -1 +0,0 @@
|
||||||
rootProject.name = 'hibernate-orm-build'
|
|
|
@ -0,0 +1 @@
|
||||||
|
rootProject.name = 'local-build-plugins'
|
|
@ -13,6 +13,8 @@ pluginManagement {
|
||||||
url = uri( "${gradle.gradleUserHomeDir}/tmp/plugins" )
|
url = uri( "${gradle.gradleUserHomeDir}/tmp/plugins" )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
includeBuild 'local-build-plugins'
|
||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
|
@ -135,8 +137,6 @@ else {
|
||||||
logger.lifecycle "Java versions for main code: " + gradle.ext.javaVersions.main
|
logger.lifecycle "Java versions for main code: " + gradle.ext.javaVersions.main
|
||||||
logger.lifecycle "Java versions for tests: " + gradle.ext.javaVersions.test
|
logger.lifecycle "Java versions for tests: " + gradle.ext.javaVersions.test
|
||||||
|
|
||||||
includeBuild('hibernate-orm-build')
|
|
||||||
|
|
||||||
include 'hibernate-core'
|
include 'hibernate-core'
|
||||||
include 'hibernate-testing'
|
include 'hibernate-testing'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue