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>.
|
|
|
|
*/
|
2018-01-10 16:06:58 -05:00
|
|
|
apply plugin: 'groovy'
|
2018-01-10 17:37:49 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2015-05-21 01:24:56 -04:00
|
|
|
apply plugin: 'java-gradle-plugin'
|
2013-06-26 03:45:14 -04:00
|
|
|
apply plugin: 'maven'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
description = "Gradle plugin for integrating Hibernate functionality into your build"
|
|
|
|
|
2013-06-26 03:45:14 -04:00
|
|
|
dependencies {
|
2015-05-21 01:24:56 -04:00
|
|
|
compile( project( ':hibernate-core' ) )
|
|
|
|
compile( libraries.jpa )
|
|
|
|
compile( libraries.javassist )
|
2016-10-04 16:43:27 -04:00
|
|
|
compile( libraries.byteBuddy )
|
2015-05-21 01:24:56 -04:00
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|