HADOOP-16046. [JDK 11] Correct the compiler exclusion of org/apache/hadoop/yarn/webapp/hamlet/** classes for >= Java 9. Contributed by Devaraj K.

This commit is contained in:
Takanobu Asanuma 2019-01-21 10:54:58 +09:00
parent 824dfa3b09
commit 27aa6e8899
1 changed files with 4 additions and 2 deletions

View File

@ -372,9 +372,11 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/main/java/org/apache/hadoop/yarn/webapp/hamlet/**</exclude>
<exclude>src/main/test/org/apache/haodop/yarn/webapp/hamlet/**</exclude>
<exclude>org/apache/hadoop/yarn/webapp/hamlet/**</exclude>
</excludes>
<testExcludes>
<exclude>org/apache/hadoop/yarn/webapp/hamlet/**</exclude>
</testExcludes>
</configuration>
</plugin>
<plugin>