maven编译错误,警告: BASE64Decoder是内部专用 API, 可能会在未来发行版中删除

修改红色部分版本号为2.3.2
             <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>
                </configuration>
            </plugin>

原文地址:https://www.cnblogs.com/snow365/p/6025965.html