maven打包异常:软件包com.sun.org.apache.xml.internal.security.utils.Base64 不存在

Posted xiluhua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven打包异常:软件包com.sun.org.apache.xml.internal.security.utils.Base64 不存在相关的知识,希望对你有一定的参考价值。

 问题:代码中使用了sun公司的第三方私有库,导致编译不通过

maven打包异常:软件包com.sun.org.apache.xml.internal.security.utils.Base64 不存在

加上如下这段。将${java.home}/lib/rt.jar添加到maven的compiler里面编译就ok了。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.2</version>
    <configuration>
        <source>1.6</source>
        <target>1.6</target>
        <encoding>${project.build.sourceEncoding}</encoding>
        <!-- added by xiluhua 20160627 
            com.sun.org.apache.xml.internal.security.utils.Base64;编译异常
            将${java.home}/lib/rt.jar添加到maven的compiler里面
       如果 JAVA_HOME 里面没有,将 jre 里面的 copy 过来 --> <compilerArguments> <verbose /> <bootclasspath>${java.home}/lib/rt.jar:${java.home}/lib/jce.jar</bootclasspath> </compilerArguments>
</configuration> </plugin>

但是在Linux环境中把rt.jar 拷贝到lib下还是编译不通过, 注意环境:

${delimiter} 这个分隔符,在Windows下是“;”分号,在Linux下是“:”冒号。

 

以上是关于maven打包异常:软件包com.sun.org.apache.xml.internal.security.utils.Base64 不存在的主要内容,如果未能解决你的问题,请参考以下文章

解决Maven打包怪异异常:Failed to execute goal org.apache.maven.plugins:maven-resources-plugin

Maven打包项目的时候报找不到符号异常,打包之前是好的,打包报错之后原项目编译也出问题。

idea maven聚合项目创建子项目出现异常?

使用eclipse对maven项目打包时,报 invalid LOC header (bad signature)异常处理

maven打包异常-Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.2.1.RELEAS

maven打包异常-Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.2.1.RELEAS