2020-10-15 18:20:30 -04:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
|
|
|
|
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-06 13:21:11 -04:00
|
|
|
|
2020-10-15 18:20:30 -04:00
|
|
|
plugins {
|
|
|
|
id 'java-gradle-plugin'
|
2021-05-14 18:31:28 -04:00
|
|
|
id 'com.gradle.plugin-publish' version '0.14.0'
|
2020-10-15 18:20:30 -04:00
|
|
|
|
2021-06-26 09:46:09 -04:00
|
|
|
id 'com.github.sebersole.testkit-junit5' version '1.2.0'
|
2020-10-15 18:20:30 -04:00
|
|
|
}
|
|
|
|
|
2021-05-18 15:55:00 -04:00
|
|
|
apply from: rootProject.file( 'gradle/java-module.gradle' )
|
2020-10-15 18:20:30 -04:00
|
|
|
|
2021-05-14 18:31:28 -04:00
|
|
|
description = "Gradle plugin for integrating Hibernate aspects into your build"
|
2020-04-06 13:21:11 -04:00
|
|
|
|
2020-10-15 18:20:30 -04:00
|
|
|
ext {
|
|
|
|
pluginId = 'org.hibernate.orm'
|
|
|
|
pluginVersion = project.version
|
|
|
|
}
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2013-06-26 03:45:14 -04:00
|
|
|
dependencies {
|
2021-05-14 18:31:28 -04:00
|
|
|
// compileOnly project( ':hibernate-core' )
|
|
|
|
//
|
|
|
|
// implementation gradleApi()
|
|
|
|
// implementation localGroovy()
|
|
|
|
//
|
|
|
|
// testRuntimeOnly project( ':hibernate-core' ) {
|
|
|
|
// }
|
2021-05-14 15:59:59 -04:00
|
|
|
|
2021-05-14 18:31:28 -04:00
|
|
|
implementation project( ':hibernate-core' )
|
|
|
|
implementation libraries.jpa
|
|
|
|
implementation libraries.javassist
|
|
|
|
implementation libraries.byteBuddy
|
2021-05-14 15:59:59 -04:00
|
|
|
implementation gradleApi()
|
|
|
|
implementation localGroovy()
|
2020-10-15 18:20:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
ormPlugin {
|
|
|
|
id = project.pluginId
|
|
|
|
implementationClass = 'org.hibernate.orm.tooling.gradle.HibernateOrmPlugin'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pluginBundle {
|
2021-03-22 07:38:00 -04:00
|
|
|
website = 'https://github.com/hibernate/hibernate-orm/tree/main/tooling/hibernate-gradle-plugin'
|
|
|
|
vcsUrl = 'https://github.com/hibernate/hibernate-orm/tree/main/tooling/hibernate-gradle-plugin'
|
2020-10-15 18:20:30 -04:00
|
|
|
tags = ['hibernate','orm','bytecode','enhancement','bytebuddy']
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
ormPlugin {
|
|
|
|
id = project.pluginId
|
|
|
|
displayName = 'Gradle plugin for Hibernate ORM'
|
|
|
|
description = 'Applies Hibernate aspects into the build'
|
|
|
|
}
|
|
|
|
}
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|
2020-07-17 07:04:56 -04:00
|
|
|
|
2021-07-01 22:15:55 -04:00
|
|
|
task publish {
|
|
|
|
dependsOn tasks.publishPlugins
|
|
|
|
}
|
|
|
|
|
2020-10-15 18:20:30 -04:00
|
|
|
processResources {
|
|
|
|
filter( ReplaceTokens, tokens: [ 'hibernateVersion': getVersion() ] )
|
2020-07-17 07:04:56 -04:00
|
|
|
}
|
2020-10-15 18:20:30 -04:00
|
|
|
|
|
|
|
|
2020-07-17 07:04:56 -04:00
|
|
|
tasks.withType( GroovyCompile ) {
|
|
|
|
options.encoding = 'UTF-8'
|
2020-11-09 04:13:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( !gradle.ext.javaToolchainEnabled ) {
|
|
|
|
tasks.withType( GroovyCompile ) {
|
|
|
|
sourceCompatibility = JavaVersion.toVersion( gradle.ext.baselineJavaVersion )
|
|
|
|
targetCompatibility = JavaVersion.toVersion( gradle.ext.baselineJavaVersion )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logger.warn( "[WARN] Toolchains are not yet supported for Groovy compilation." +
|
2020-11-17 06:40:43 -05:00
|
|
|
" Using the JDK that runs Gradle for Groovy compilation." )
|
2020-07-17 07:04:56 -04:00
|
|
|
}
|
2020-11-17 06:40:43 -05:00
|
|
|
|
2020-12-14 08:11:00 -05:00
|
|
|
tasks.test {
|
|
|
|
if ( gradle.ext.javaVersions.test.launcher.asInt() >= 9 ) {
|
|
|
|
// Needs add-opens because Gradle uses illegal accesses to inject... mocks? Something like that.
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.lang=ALL-UNNAMED'] )
|
|
|
|
}
|
|
|
|
}
|
2021-05-18 15:58:16 -04:00
|
|
|
|
2021-05-18 17:03:34 -04:00
|
|
|
task release {
|
|
|
|
dependsOn tasks.publishPlugins
|
|
|
|
}
|
|
|
|
|
2021-07-01 22:15:55 -04:00
|
|
|
afterEvaluate {
|
|
|
|
if ( project.ormVersion.isSnapshot ) {
|
|
|
|
release.enabled false
|
|
|
|
publish.enabled false
|
|
|
|
publishPlugins.enabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 15:58:16 -04:00
|
|
|
gradle.taskGraph.whenReady { tg ->
|
2021-08-04 08:26:29 -04:00
|
|
|
// look for sys-prop or env-var overrides of the tokens used for publishing
|
|
|
|
if ( System.properties.hasProperty( 'gradle.publish.key' )
|
|
|
|
|| System.properties.hasProperty( 'gradle.publish.secret' )
|
|
|
|
|| System.getenv().containsKey( 'GRADLE_PUBLISH_KEY' )
|
|
|
|
|| System.getenv().containsKey( 'GRADLE_PUBLISH_SECRET' ) ) {
|
|
|
|
// nothing to do - already explicitly set
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// use the values from the credentials provider, if any
|
2021-05-18 15:58:16 -04:00
|
|
|
if ( credentials.hibernatePluginPortalUsername == null ) {
|
|
|
|
throw new RuntimeException( "`hibernatePluginPortalUsername` not found" )
|
|
|
|
}
|
|
|
|
if ( credentials.hibernatePluginPortalPassword == null ) {
|
|
|
|
throw new RuntimeException( "`hibernatePluginPortalPassword` not found" )
|
|
|
|
}
|
2021-08-04 08:26:29 -04:00
|
|
|
System.setProperty( 'gradle.publish.key', credentials.hibernatePluginPortalUsername )
|
|
|
|
System.setProperty( 'gradle.publish.secret', credentials.hibernatePluginPortalPassword )
|
2021-05-18 15:58:16 -04:00
|
|
|
}
|
|
|
|
}
|