hibernate-orm/tooling/hibernate-maven-plugin/hibernate-maven-plugin.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
768 B
Groovy
Raw Normal View History

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' )
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"
}