maven configuration [closed]

4

I created a Maven project (NOTE: this is the first time I'm touching this technology), but it is giving this error. This plugin that the message is speaking do I need to install it? How do I do?

Another thing, when I go to propriedades do projeto >> Project faces and click on dynamic web module 3.1 it asks for the java 1.7 version. Is this right? In my view should point to Java 1.8 , since the technologies I'm using are more current.

My machine has these settings:
- Maven 3.3
- JDK 1.8
- Tomcat 8.0.23

Couldanyonehelpme?

EDITION:Thisismypom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.hellemos</groupId> <artifactId>Financeiro</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>     
asked by anonymous 03.06.2015 / 21:04

0 answers