JAVA Errors -- Solutions

     1. Running test case - Maven - Junit - IntelliJ  

https://intellij-support.jetbrains.com/hc/en-us/community/posts/360008194920-Error-java-error-release-version-15-not-supported

https://stackoverflow.com/questions/59601077/intellij-errorjava-error-release-version-5-not-supported


Solution: Adding the following lines to pom.xml

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

2. Confiure tomcat in IntelliJ Community edition
https://stackoverflow.com/questions/22047860/tomcat-in-intellij-idea-community-edition

Comments