不再支持源选项 5。使用 6 或更高版本的 Android Studio
Posted
技术标签:
【中文标题】不再支持源选项 5。使用 6 或更高版本的 Android Studio【英文标题】:Source option 5 is no longer supported. Use 6 or later Android studio 【发布时间】:2021-06-04 12:21:02 【问题描述】:今天在构建我的应用程序时出现此错误 不再支持源选项 5。使用 6 或更高版本。 不再支持目标选项 1.5。使用 1.6 或更高版本 已显示,并且无法修复它,因为 pom.xml 文件在 android studio 中是只读的。那么,谁能告诉我如何解决它????
这是我的 pom.xml 文件
<?xml version="1.0" encoding="UTF-8"?>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>13.0</version>
<packaging>jar</packaging>
<name>IntelliJ IDEA Annotations</name>
<description>A set of annotations used for code inspection support and code documentation.</description>
<url>http://www.jetbrains.org</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<url>https://github.com/JetBrains/intellij-community</url>
<connection>scm:git:https://github.com/JetBrains/intellij-community.git</connection>
</scm>
<developers>
<developer>
<id>JetBrains</id>
<name>JetBrains Team</name>
<organization>JetBrains</organization>
<organizationUrl>http://www.jetbrains.com</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>generate-sources</phase>
<configuration>
<tasks>
<delete dir="$basedir/src/main/java" />
<mkdir dir="$basedir/src/main/java" />
<copy todir="$basedir/src/main/java">
<fileset dir="$basedir/../../../community/platform/annotations/src" />
</copy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<keyname>66770193</keyname>
<homedir>$basedir/.gnupg</homedir>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
如果我遗漏了什么,或者您需要任何其他文件代码来解决此问题,请联系我们。因为我不知道这个错误是从哪里来的。
【问题讨论】:
【参考方案1】:您的pom.xml
包含以下 sn-p:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
这是在告诉编译器您正在使用 Java 1.5,这是一个非常古老的 Java 版本。遵守至少需要使用1.6的说法,改为:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
虽然 1.6 也很老了,但强烈推荐使用更现代的版本。
【讨论】:
是的,我知道,但问题是我不知道如何更改它,因为文件是只读的,所以我不能简单地输入最新版本。你能告诉我如何升级到最新版本吗 是的,它在 android studio 中是只读的。那就是问题所在。有什么办法可以改变它的内容吗? 你似乎漏掉了我问题中的关键词:why 我不知道,也许它应该是这样的。我不知道,但由于这个问题,我被卡住了,什么都做不了。 感谢小伙伴的建议,问题终于解决了。【参考方案2】:终于解决了。 POM.xml 文件是只读的是对的,但是我们仍然可以更改 Source 兼容性和 Target 兼容性。方法如下:
*转到:*
文件
在属性中将源兼容性和目标兼容性更改为最新版本
在那里它会自动更新 POM.xml 文件,你不必手动编辑它。
【讨论】:
以上是关于不再支持源选项 5。使用 6 或更高版本的 Android Studio的主要内容,如果未能解决你的问题,请参考以下文章
Maven [ERROR] 不再支持源选项 5。请使用 6 或更高版本
maven报错:Error:java: 不再支持源选项 5。请使用 6 或更高版本。
IDEA运行报错: Maven编译错误:不再支持源选项 5。请使用 6 或更高版本