/* * 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 . */ description = 'Support for testing Hibernate ORM functionality' apply from: rootProject.file( 'gradle/published-java-module.gradle' ) dependencies { compile project( ':hibernate-core' ) compile( libraries.jta ) compile libraries.junit compile libraries.junit5_api compile libraries.junit5_params compile libraries.assertj compile libraries.log4j2 compile 'javax.money:money-api:1.0.1' compile 'org.javamoney:moneta:1.1' compile( libraries.byteman ) compile( libraries.byteman_install ) compile( libraries.byteman_bmunit ) compile( libraries.xapool ) compile( libraries.jboss_tx_spi ) { transitive=false; } compile ( libraries.jboss_jta ) { transitive=false; } } // resources inherently exclude sources sourceSets.test.resources { setSrcDirs( ['src/test/java'] ) } // todo : Fold into hibernate-core and publish in separate publications // once http://issues.gradle.org/browse/GRADLE-2966 is resolved; // that will allow us to keep the same artifactId and publish the pom // with proper dependencies