/* * 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 . */ repositories { mavenCentral() jcenter() } apply plugin: "groovy" buildDir = "target" dependencies { compile gradleApi() compile localGroovy() compile 'org.hibernate.build.gradle:gradle-animalSniffer-plugin:1.0.1.Final' compile 'org.hibernate.build.gradle:hibernate-matrix-testing:3.0.0.Final' } tasks.withType( GroovyCompile ) { options.encoding = 'UTF-8' sourceCompatibility = 8 targetCompatibility = 8 }