I am a beginner in Maven, I have some problems that I can not solve. Does anyone know how to decipher these errors? Did not quite understand.
Put this snippet in your pom.xml:
<build>
<finalName>NomeProjeto</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
Then go to the folder webapp
create a folder named WEB-INF
and create the file web.xml
inside that folder.
Once this is done right click on your project, go to Maven
> Update Project
> OK