1
0
mirror of https://github.com/hibernate/hibernate-orm synced 2025-02-14 15:14:56 +00:00
Steve Ebersole 682c0642e2 HHH-10178 - Move Geronimo JTA jar to provided configuration (non-transitive)
(cherry picked from commit 4793ca30a2f1d16691b3dcc1976dc78c7ef9d7ba)
2015-11-17 10:24:08 -06:00

23 lines
613 B
Groovy

/*
* 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>.
*/
dependencies {
compile project( ':hibernate-core' )
compile( libraries.ehcache )
provided( libraries.jta )
testCompile project( ':hibernate-testing' )
}
mavenPom {
name = 'Hibernate/Ehcache Integration'
description = 'Integration for Ehcache into Hibernate as a second-level caching service'
}
def osgiDescription() {
return mavenPom.description
}