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>.
|
|
|
|
*/
|
2015-03-24 17:01:15 -04:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2015-04-10 12:58:22 -04:00
|
|
|
jcenter()
|
2015-03-24 17:01:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: "groovy"
|
|
|
|
|
2017-03-17 05:07:24 -04:00
|
|
|
buildDir = "target"
|
|
|
|
|
2015-03-24 17:01:15 -04:00
|
|
|
dependencies {
|
|
|
|
compile gradleApi()
|
|
|
|
compile localGroovy()
|
2015-04-10 12:58:22 -04:00
|
|
|
|
|
|
|
compile 'org.hibernate.build.gradle:gradle-animalSniffer-plugin:1.0.1.Final'
|
2019-10-21 12:49:41 -04:00
|
|
|
compile 'org.hibernate.build.gradle:hibernate-matrix-testing:3.0.0.Final'
|
2018-06-26 14:12:58 -04:00
|
|
|
}
|
2020-07-17 07:04:56 -04:00
|
|
|
|
|
|
|
tasks.withType( GroovyCompile ) {
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
sourceCompatibility = 8
|
|
|
|
targetCompatibility = 8
|
|
|
|
}
|