HDFS-11610. sun.net.spi.nameservice.NameService has moved to a new location. Contributed by Akira Ajisaka.

This commit is contained in:
Takanobu Asanuma 2018-08-03 23:38:05 +09:00
parent 3426f4062a
commit 2b18bb4f37
1 changed files with 18 additions and 1 deletions

View File

@ -580,6 +580,23 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
</plugins>
</build>
</profile>
<profile>
<id>java9</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<testExcludes>
<testExclude>org/apache/hadoop/hdfs/TestDFSClientFailover.java</testExclude>
</testExcludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>