ENT-2105: Remove unnecessary sourceSets from integration tests. (#1029)

The database scripts are already available from the test-utils JAR via the classpath and so don't need
to be included as additional source sets.
This commit is contained in:
Chris Rankin 2018-06-20 15:38:48 +01:00 committed by GitHub
parent 0a1f49fbaf
commit 9b5a099302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 0 additions and 24 deletions

View File

@ -28,9 +28,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
resources {
srcDir file('../../testing/test-utils/src/main/resources')
}
}
}

View File

@ -45,9 +45,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/java')
}
resources {
srcDir file('../../testing/test-utils/src/main/resources')
}
}
smokeTest {
kotlin {

View File

@ -47,7 +47,6 @@ sourceSets {
}
resources {
srcDir file('src/integration-test/resources')
srcDir file('../../testing/test-utils/src/main/resources')
}
}
}

View File

@ -34,7 +34,6 @@ sourceSets {
}
resources {
srcDir file('src/integration-test/resources')
srcDir file('../../testing/test-utils/src/main/resources')
}
}
}

View File

@ -24,9 +24,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
resources {
srcDir file('../testing/test-utils/src/main/resources')
}
}
}

View File

@ -24,9 +24,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
resources {
srcDir file('../testing/test-utils/src/main/resources')
}
}
}

View File

@ -47,9 +47,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
resources {
srcDir file('../testing/test-utils/src/main/resources')
}
}
systemTest {
kotlin {

View File

@ -26,9 +26,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
resources {
srcDir file('../testing/test-utils/src/main/resources')
}
}
scenarioTest {
kotlin {

View File

@ -24,9 +24,6 @@ sourceSets {
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
resources {
srcDir file('../testing/test-utils/src/main/resources')
}
}
}

View File

@ -30,7 +30,6 @@ sourceSets {
}
resources {
srcDir file('src/integration-test/resources')
srcDir file('../testing/test-utils/src/main/resources')
}
}
}