Intellij IDEA 出现“Usage of API documented as @since 1.6+”的解决办法

来源:互联网 发布:复制文件夹 linux 编辑:程序博客网 时间:2024/06/07 01:53


File > Project Structure > Project Settings > Modules > your Module name > Sources > Language Level > choose the one which you need.






或者在pom 添加



<build>        <plugins>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-compiler-plugin</artifactId>                <version>3.6.0</version>                <configuration>                    <source>1.8</source>                    <target>1.8</target>                </configuration>            </plugin>        </plugins>    </build> 



阅读全文
0 0
原创粉丝点击