We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4a54bd + 92ea07e commit 1a46672Copy full SHA for 1a46672
buildSrc/src/main/groovy/IntegrationTestsPlugin.groovy
@@ -6,6 +6,9 @@ class IntegrationTestsPlugin implements Plugin<Project> {
6
7
@Override
8
void apply(Project project) {
9
+
10
+ project.apply(plugin: 'eclipse')
11
12
project.sourceSets {
13
integrationTest {
14
java {
@@ -22,6 +25,8 @@ class IntegrationTestsPlugin implements Plugin<Project> {
22
25
integrationTestRuntime.extendsFrom testRuntime
23
26
}
24
27
28
+ project.eclipse.classpath.plusConfigurations << project.configurations.integrationTestCompile
29
30
project.task("integrationTest", type: Test) {
31
testClassesDirs = project.sourceSets.integrationTest.output.classesDirs
32
classpath = project.sourceSets.integrationTest.runtimeClasspath
0 commit comments