Problems in design with Maven - Algaworks

0

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.

    
asked by anonymous 01.10.2015 / 02:05

1 answer

0

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

    
01.10.2015 / 13:28