[intellij project configuration] migrate intellij.maven.model to Java 8 (IJPL-160046)

maven.server.* modules which use it have language level Java 8 anyway, so it doesn't make sense to keep compatibility with Java 7 in it.

This is needed to simplify migration to Java 21, which doesn't support cross-compilation to Java 7.

GitOrigin-RevId: b603da73514aad9c6c6c9cda0e35ced1cfb8b05a
This commit is contained in:
Nikolay Chashnikov
2025-05-13 23:23:16 +03:00
committed by intellij-monorepo-bot
parent 39a097f3a5
commit 93ee22b1af

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module relativePaths="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8" inherit-compiler-output="true">
<exclude-output />
<annotation-paths>
<root url="file://$MODULE_DIR$/anno" />
@@ -11,6 +11,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="jetbrains-annotations-java5" level="project" />
<orderEntry type="library" name="jetbrains-annotations" level="project" />
</component>
</module>