31 lines
955 B
Groovy
31 lines
955 B
Groovy
|
|
/*
|
|
* 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
|
|
*/
|
|
apply plugin: 'org.hibernate.orm.jakarta'
|
|
|
|
apply from: rootProject.file( 'gradle/libraries.gradle' )
|
|
apply from: rootProject.file( 'gradle/databases.gradle' )
|
|
apply plugin: 'org.hibernate.orm.database-service'
|
|
apply plugin: 'build-dashboard'
|
|
apply plugin: 'project-report'
|
|
|
|
configurations {
|
|
jakartaeeTransformTool {
|
|
description = 'JakartaTransformer tool dependencies'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
jakartaeeTransformTool 'org.eclipse.transformer:org.eclipse.transformer:0.2.0'
|
|
jakartaeeTransformTool 'org.eclipse.transformer:org.eclipse.transformer.cli:0.2.0'
|
|
}
|
|
|
|
tasks.withType( Test ) { test ->
|
|
test.usesService( project.gradle.sharedServices.registrations.getByName( 'databaseService' ).service )
|
|
}
|
|
|