Skip to content

Commit

Permalink
Attempt to fix problem with junit-platform-commons-java-9
Browse files Browse the repository at this point in the history
  • Loading branch information
jbduncan committed Dec 11, 2017
1 parent 2beb69b commit fe8c123
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,11 @@ subprojects { subproj ->

}

if (subproj.name != 'documentation') {
if (!project.name.endsWith('-java-9')
// error-prone doesn't work with Java 9 sources yet:
// https://github.com/google/error-prone/issues/448
&& subproj.name != 'documentation') {

apply plugin: 'net.ltgt.errorprone-base'

dependencies {
Expand Down

0 comments on commit fe8c123

Please sign in to comment.