stop IntelliJ IDEA to switch java language level every time the pom is reloaded (or change the default project language level)

前端 未结 9 1070
悲&欢浪女
悲&欢浪女 2020-11-28 01:59

Using IntelliJ 12, I have a java project and I use maven with a pom.xml. My project is using java8, but it seems the default project language level has been set to 6 while i

相关标签:
9条回答
  • 2020-11-28 02:28

    There was one additional step I had to follow, in addition to setting the maven build properties, adding the maven-compiler-plugin, and modifying the Java version in the .iml file. (each documented already in the other answers). You also have to set the compiler version in the settings.

    0 讨论(0)
  • 2020-11-28 02:31

    There are two ways of doing this, add either one of them in your pom.xml file:

    First- Add Properties

    <properties>
      <maven.compiler.source>1.8</maven.compiler.source>
      <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    

    second- Add Plugin

    <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
    </plugin>
    

    Let me know if it helps.

    0 讨论(0)
  • 2020-11-28 02:32

    I'm upgrading a project from JDK 8 to JDK 10+. I had the compiler properties specified correctly as follows:

    <properties>
      <maven.compiler.source>10</maven.compiler.source>
      <maven.compiler.target>10</maven.compiler.target>
    </properties>
    

    However the Idea project would keep resetting the language level to 8.

    Eventually I figured out that Idea's Maven import process was using JDK 8 to import the project which limited the language level to <= 8.

    To fix I updated the 'JDK for importer' property under Settings -> Build, Execution, Deployment -> Build Tools -> Maven -> Importing to use JDK 11.

    0 讨论(0)
  • 2020-11-28 02:35

    None of the solutions helped in my case. I didn’t need to specify any Java version in my pom.xml.

    I needed to open the <project-name>.iml file and change the JDK version there.

    Original:

    <?xml version="1.0" encoding="UTF-8"?>
    <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5">
        <!-- ...                                                   ^ -->
        <!-- ...                                                   | -->
    

    Updated:

    <?xml version="1.0" encoding="UTF-8"?>
    <module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
        <!-- ...                                                   ^ -->
        <!-- ...                                                   | -->
    

    This makes no sense at all. At no point have I specified a JDK version for Java 1.5.

    0 讨论(0)
  • 2020-11-28 02:41

    I think this has to do with a conceptual conflict between the Maven compiler plugin and IntelliJ idea. Apparently the newer versions of the compiler plugin have a default level of 1.5 (see http://maven.apache.org/plugins/maven-compiler-plugin/). So if the compiler plugin is used at all in a project, and the compiler level is not explicitly set in the pom.xml, whenever the POM is re-processed the level will revert to the default.

    So there is a conceptual conflict which is ignored by Intellij IDEA. The IDE still allows one to set the project and module settings, but provides no warning or feedback that this setting is controlled by pom.xml. Solutions would either be to explicitly allow overriding the POM compiler plugin setting (perhaps not wise because what then happens when you use maven on the command line), or to deactivate the controls in the IDE when this setting from the POM is in effect.

    The solution at the present time is to set the desired compiler level in the compiler plugin in the pom, the re-import, rather than trying to set it in module settings.

    0 讨论(0)
  • 2020-11-28 02:43

    I struggled a lot with this problem, due to building microservices with Dropwizard. Eventually I found out that I had my build properties in the wrong pom file (The main service's pom.xml).

    So, even though the other packages are more like libraries, I were not able to use the Java 8 syntax.

    When I refactored the build plugin into the "global" .pom.xml" file, all child containers were able to use the new syntax.

    May help someone having issues with multi-container projects

    0 讨论(0)
提交回复
热议问题