使用maven时,一直报这个错误:

[ERROR] /home/tsit/TeaVM/samples/benchmark/src/main/java/org/html/HTMLScanner.java:[2695,56] 无法访问com.sun.xml.internal.stream.XMLBufferListener
[ERROR] 找不到com.sun.xml.internal.stream.XMLBufferListener的类文件

解决办法,编辑pom.xml,加入:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<bootclasspath>${JAVA_HOME}/jre/lib/rt.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>