[ENT-1363] DB integration test fixes (#411)

Dependencies on JDBC drivers in 'node' need to be marked as 'runtime' instead of 'integrationTestRuntimeOnly', to make them available to integration tests in other projects.
This commit is contained in:
igor nitto 2018-01-25 18:32:34 +00:00 committed by szymonsztuka
parent 83ea4611ca
commit 3be30af161

View File

@ -201,7 +201,7 @@ dependencies {
if (DB_PROVIDER != null) {
final driverDependency = jdbcRuntimeDependency[DB_PROVIDER]
if (driverDependency != null) {
integrationTestRuntimeOnly driverDependency
runtime driverDependency
} else {
throw new GradleException('Unsupported DB provider: ' + DB_PROVIDER)
}