Maven编译报错sun.misc.BASE64Decoder是Sun的专用API,可能会在未来版本删除

来源:互联网 发布:淘宝虚拟商品有哪些 编辑:程序博客网 时间:2024/05/29 17:47

maven编译报错:sun.misc.BASE64Decoder是Sun的专yongAPI,可能会在未来版本中删除  

   解决方法是:将maven-compiler-plugin升级到新的版本:     <plugin>          <groupId>org.apache.maven.plugins</groupId>          <artifactId>maven-compiler-plugin</artifactId>          <version>2.3.2</version>      </plugin>

阅读全文
0 0