maven打包編譯的錯誤:sun.misc.BASE64Decoder是Sun的專用API,可能會在將來版本中刪除

今天遇到 sun.misc.BASE64Decoder是Sun的專用API,可能會在將來版本中刪除 的錯誤 算是maven的一個bug吧。 maven-compiler-plugin 2.3.2 發佈之後把這個錯誤改爲了告警。 因此只要將這個插件升級一下就行了。java

```
 <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>UTF-8</encoding>
                    <compilerArguments>
                        <verbose />
                        <bootclasspath>${java.home}/lib/rt.jar</bootclasspath>
                    </compilerArguments>
                </configuration>
            </plugin>
相關文章
相關標籤/搜索