Skip to content

Commit

Permalink
Re-add missing source set
Browse files Browse the repository at this point in the history
  • Loading branch information
lenhard committed Feb 25, 2016
1 parent 7abada7 commit cc1f849
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ sourceSets {
java {
srcDirs = ["src/main/java", "src/main/gen"]
}
}
integrationTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
srcDir file('src/integrationTest/java')
}
resources.srcDir file('src/integrationTest/resources')
}
}

Expand Down

0 comments on commit cc1f849

Please sign in to comment.