2024-10-17 10:22:37 -04:00
|
|
|
description = 'Maven plugin to integrate aspects of Hibernate into your build.'
|
|
|
|
|
2024-11-13 18:41:38 -05:00
|
|
|
//apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
apply from: rootProject.file( 'gradle/java-module.gradle' )
|
|
|
|
|
2024-10-17 10:22:37 -04:00
|
|
|
apply plugin: 'org.hibernate.build.maven-embedder'
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project( ":hibernate-core" )
|
|
|
|
|
|
|
|
implementation "org.apache.maven:maven-plugin-api:3.6.3"
|
|
|
|
implementation "org.apache.maven.plugin-tools:maven-plugin-annotations:3.6.0"
|
|
|
|
implementation "org.apache.maven:maven-project:2.2.1"
|
|
|
|
}
|