Wednesday 15 January 2014

java - Maven: Project build error 'modelVersion' is missing -



java - Maven: Project build error 'modelVersion' is missing -

i'm trying create new maven project error pom.xml...

can help me solving problem, please? i'm newbie maven & eclipse ide

thank much.

your pom.xml incopmlete

you need

<?xml version="1.0" encoding="utf-8"?> <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/maven-v4_0_0.xsd"> <modelversion>4.0.0</modelversion> <groupid>your.group.id</groupid> <artifactid>your-artifact-id</artifactid> <version>your-version</version> <!-- stuff here --> </project>

java eclipse maven

No comments:

Post a Comment