Hi All, How should i check whether or not a particular POM (pom.xml) is syntactically correct. Is there any apache API for that?
for example, if one of the tag is missing or say is wrong. Then which method
I should use so that I got exception thrown, so that I can handle it.
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven</artifactId>
<version>2.2.0</version>
* </pat>
Note: here the last </parent> tag is wrong.
*
