5.3 cr1 - prep release : fixed problem in release task dependencies

This commit is contained in:
Steve Ebersole 2018-02-15 12:06:01 -06:00
parent 2636c1e2f0
commit 9e1bf7e762
2 changed files with 4 additions and 2 deletions

View File

@ -136,7 +136,7 @@ publishing {
}
}
task ciBuild( dependsOn: [clean, test, publish] )
task ciBuild( dependsOn: [test, publish] )
task release( dependsOn: [clean, test, bintrayUpload] )
task release( dependsOn: [test, bintrayUpload] )

View File

@ -12,7 +12,9 @@ description = 'Integration for Agroal as a ConnectionProvider for Hibernate ORM'
dependencies {
compile project( ':hibernate-core' )
compile( libraries.agroal_api )
runtime( libraries.agroal_pool )
testCompile project( ':hibernate-testing' )
testCompile(libraries.mockito)
}