maven打jar包时使用<compilerArguments>标签遇到的报错问题

问题

单独使用 bootclasspath 标签时

<compilerArguments>
   <bootclasspath>${java.home}/lib</bootclasspath>
</compilerArguments>

问题说明:
在maven打jar包时,先clean再install时报错

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project rs-datacenter-server: Compilation failure
[ERROR] An unknown compilation problem occurred
[ERROR] 
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :rs-datacenter-server

单独使用 extdirs 标签时

<compilerArguments>
   <extdirs>${java.home}/lib</extdirs>
</compilerArguments>

问题说明:
在maven打jar包时,先clean再install时报错

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project rs-datacenter-server: Compilation failure: Compilation failure: 
[ERROR] /E:/JAVAIDEA/dev/server/src/main/java/com/rs/utils/gdal/ImageOperate.java:[3,32] �����com.sun.image.codec.jpeg������
[ERROR] /E:/JAVAIDEA/dev/server/src/main/java/com/rs/utils/gdal/ImageOperate.java:[3,32] �����com.sun.image.codec.jpeg������
[ERROR] /E:/JAVAIDEA/dev/server/src/main/java/com/rs/utils/gdal/ImageOperate.java:[3,32] �����com.sun.image.codec.jpeg������
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :rs-datacenter-server

解决方案:

同时使用 bootclasspath 和 extdirs 标签

<compilerArguments>
   <extdirs>${java.home}/lib</extdirs>
   <bootclasspath>${java.home}/lib</bootclasspath>
</compilerArguments>

在maven打jar包时,先clean再install后操作成功

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值