
单独使用 bootclasspath 标签时
${java.home}/lib
问题说明:
在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-rf :rs-datacenter-server
单独使用 extdirs 标签时
${java.home}/lib
问题说明:
在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解决方案:-rf :rs-datacenter-server
同时使用 bootclasspath 和 extdirs 标签
${java.home}/lib ${java.home}/lib
在maven打jar包时,先clean再install后操作成功