Java —- Idea Maven Module Language level 5 enum

Table of Contents

A question

Maven project idea unit language level is always automatically changed to 5 enum…

Approaching

Uniformly add pom.xml to the main module

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

Leave a Comment