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
|
|
|
|
2018-03-22 23:51:07 -04:00
|
|
|
description = "Integration for using Ehcache 2.x as a Hibernate second-level-cache provider"
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
2018-03-22 23:51:07 -04:00
|
|
|
dependencies {
|
|
|
|
compile project( ':hibernate-core' )
|
|
|
|
compile( libraries.ehcache )
|
2018-06-26 08:29:57 -04:00
|
|
|
|
|
|
|
testCompile project( ':hibernate-testing' )
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|