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:
parent
824dfa3b09
commit
27aa6e8899
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue