/* * 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 . */ apply plugin: 'groovy' apply from: rootProject.file( 'gradle/published-java-module.gradle' ) apply plugin: 'java-gradle-plugin' apply plugin: 'maven' description = "Gradle plugin for integrating Hibernate functionality into your build" dependencies { compile( project( ':hibernate-core' ) ) compile( libraries.jpa ) compile( libraries.javassist ) compile( libraries.byteBuddy ) compile gradleApi() compile localGroovy() }