<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Create your own Maven2 Archetype</title>
	<atom:link href="http://www.redstream.nl/2009/09/30/create-your-own-maven2-archetype/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redstream.nl/2009/09/30/create-your-own-maven2-archetype/</link>
	<description>Pragmatic Integrators</description>
	<lastBuildDate>Tue, 18 Oct 2011 12:18:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Pascal Alma</title>
		<link>http://www.redstream.nl/2009/09/30/create-your-own-maven2-archetype/comment-page-1/#comment-368</link>
		<dc:creator>Pascal Alma</dc:creator>
		<pubDate>Wed, 06 Jan 2010 20:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.pascalalma.net/?p=1008#comment-368</guid>
		<description>Hi Denis,

I haven&#039;t seen this exception before. It appears that something in your pom.xml is invalid xml, like strange characters or a space at some invalid place, could also be in one of the parent poms. Perhaps you can comment out parts of the pom.xml to determine the exact line that causes the exception.
HTH.</description>
		<content:encoded><![CDATA[<p>Hi Denis,</p>
<p>I haven&#8217;t seen this exception before. It appears that something in your pom.xml is invalid xml, like strange characters or a space at some invalid place, could also be in one of the parent poms. Perhaps you can comment out parts of the pom.xml to determine the exact line that causes the exception.<br />
HTH.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denis</title>
		<link>http://www.redstream.nl/2009/09/30/create-your-own-maven2-archetype/comment-page-1/#comment-367</link>
		<dc:creator>Denis</dc:creator>
		<pubDate>Wed, 06 Jan 2010 17:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.pascalalma.net/?p=1008#comment-367</guid>
		<description>Pascal,

i&#039;m also trying to create an archetype, but after using:

mvn archetype:create-from-project -X

i got this error: java.io.IOException: Cannot parse the POM by JDOM

The full stacktrace in debug mode is in the end of this comment.

It proccess all nodes indicated through my parent pom recursively, and ends abrupt with this message.

Do you have any idea wich can cause it?

Thks, Denis

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] : java.io.IOException: Cannot parse the POM by JDOM.
Cannot parse the POM by JDOM.

Cannot parse the POM by JDOM.
[INFO] ------------------------------------------------------------------------
[DEBUG] Trace
org.apache.maven.BuildFailureException: Cannot parse the POM by JDOM.
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:579)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:512)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:482)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:330)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:227)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:142)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:336)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:287)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:585)
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
	at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
	at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.plugin.MojoFailureException: Cannot parse the POM by JDOM.
	at org.apache.maven.archetype.mojos.CreateArchetypeFromProjectMojo.execute(CreateArchetypeFromProjectMojo.java:207)
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:451)
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:558)</description>
		<content:encoded><![CDATA[<p>Pascal,</p>
<p>i&#8217;m also trying to create an archetype, but after using:</p>
<p>mvn archetype:create-from-project -X</p>
<p>i got this error: java.io.IOException: Cannot parse the POM by JDOM</p>
<p>The full stacktrace in debug mode is in the end of this comment.</p>
<p>It proccess all nodes indicated through my parent pom recursively, and ends abrupt with this message.</p>
<p>Do you have any idea wich can cause it?</p>
<p>Thks, Denis</p>
<p>[INFO] &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
[ERROR] BUILD FAILURE<br />
[INFO] &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
[INFO] : java.io.IOException: Cannot parse the POM by JDOM.<br />
Cannot parse the POM by JDOM.</p>
<p>Cannot parse the POM by JDOM.<br />
[INFO] &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
[DEBUG] Trace<br />
org.apache.maven.BuildFailureException: Cannot parse the POM by JDOM.<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:579)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneGoal(DefaultLifecycleExecutor.java:512)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:482)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:330)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:227)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:142)<br />
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:336)<br />
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:129)<br />
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:287)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />
	at java.lang.reflect.Method.invoke(Method.java:585)<br />
	at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)<br />
	at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)<br />
	at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)<br />
	at org.codehaus.classworlds.Launcher.main(Launcher.java:375)<br />
Caused by: org.apache.maven.plugin.MojoFailureException: Cannot parse the POM by JDOM.<br />
	at org.apache.maven.archetype.mojos.CreateArchetypeFromProjectMojo.execute(CreateArchetypeFromProjectMojo.java:207)<br />
	at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:451)<br />
	at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:558)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

