Answers for "maven Source option 5 is no longer supported. Use 6 or later. Target option 1.5 is no longer supported. Use 1.6 or later."

1

maven source option 5 is no longer supported use 7 or later

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.7</source>
            <target>1.7</target>
        </configuration>
    </plugin>
Posted by: Guest on March-28-2020

Code answers related to "maven Source option 5 is no longer supported. Use 6 or later. Target option 1.5 is no longer supported. Use 1.6 or later."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language