<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Building Google App Engine Java projects with Maven2</title>
	<atom:link href="http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/</link>
	<description>Putting the nerd in comnerdedy</description>
	<lastBuildDate>Thu, 11 Mar 2010 23:51:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sudhir</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-32683</link>
		<dc:creator>Sudhir</dc:creator>
		<pubDate>Fri, 08 Jan 2010 16:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-32683</guid>
		<description>Vote here if you are looking for maven support in GAE
http://code.google.com/p/googleappengine/issues/detail?id=1296</description>
		<content:encoded><![CDATA[<p>Vote here if you are looking for maven support in GAE<br />
<a href="http://code.google.com/p/googleappengine/issues/detail?id=1296" rel="nofollow">http://code.google.com/p/googleappengine/issues/detail?id=1296</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Brodkin</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-30609</link>
		<dc:creator>Sam Brodkin</dc:creator>
		<pubDate>Tue, 08 Sep 2009 15:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-30609</guid>
		<description>Here is a batch file for windows to do the gae artifact local maven repo installing:
&lt;pre&gt;
set LIB=d:\downloads\appengine-java-sdk-1.2.0\lib
set VERS=1.2.0

call mvn install:install-file -Dfile=%LIB%/appengine-tools-api.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/appengine-local-runtime-shared.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-el_1.0_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-el_1.0_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-jsp_2.1_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jsp_2.1_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-servlet_2.5_spec-1.2.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-servlet_2.5_spec -Dversion=1.2 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jpa_3.0_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jpa_3.0_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jta_1.1_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jta_1.1_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/datanucleus-appengine-1.0.0.final.jar -DgroupId=org.datanucleus -DartifactId=datanucleus-appengine -Dversion=1.0.0.final -Dpackaging=jar -DgeneratePom=true


&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Here is a batch file for windows to do the gae artifact local maven repo installing:</p>
<pre>
set LIB=d:\downloads\appengine-java-sdk-1.2.0\lib
set VERS=1.2.0

call mvn install:install-file -Dfile=%LIB%/appengine-tools-api.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/appengine-local-runtime-shared.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-el_1.0_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-el_1.0_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-jsp_2.1_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jsp_2.1_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-servlet_2.5_spec-1.2.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-servlet_2.5_spec -Dversion=1.2 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jpa_3.0_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jpa_3.0_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jta_1.1_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jta_1.1_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/datanucleus-appengine-1.0.0.final.jar -DgroupId=org.datanucleus -DartifactId=datanucleus-appengine -Dversion=1.0.0.final -Dpackaging=jar -DgeneratePom=true
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Brodkin</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-30608</link>
		<dc:creator>Sam Brodkin</dc:creator>
		<pubDate>Tue, 08 Sep 2009 15:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-30608</guid>
		<description>Here is a batch file for windows to do the gae artifact local maven repo installing:

set LIB=d:\downloads\appengine-java-sdk-1.2.0\lib
set VERS=1.2.0

call mvn install:install-file -Dfile=%LIB%/appengine-tools-api.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/appengine-local-runtime-shared.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-el_1.0_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-el_1.0_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-jsp_2.1_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jsp_2.1_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-servlet_2.5_spec-1.2.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-servlet_2.5_spec -Dversion=1.2 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jpa_3.0_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jpa_3.0_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jta_1.1_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jta_1.1_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true
call mvn install:install-file -Dfile=%LIB%/user/orm/datanucleus-appengine-1.0.0.final.jar -DgroupId=org.datanucleus -DartifactId=datanucleus-appengine -Dversion=1.0.0.final -Dpackaging=jar -DgeneratePom=true</description>
		<content:encoded><![CDATA[<p>Here is a batch file for windows to do the gae artifact local maven repo installing:</p>
<p>set LIB=d:\downloads\appengine-java-sdk-1.2.0\lib<br />
set VERS=1.2.0</p>
<p>call mvn install:install-file -Dfile=%LIB%/appengine-tools-api.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/shared/appengine-local-runtime-shared.jar -DgroupId=com.google -DartifactId=appengine-tools -Dversion=%VERS% -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-el_1.0_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-el_1.0_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-jsp_2.1_spec-1.0.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jsp_2.1_spec -Dversion=1.0.1 -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/shared/geronimo-servlet_2.5_spec-1.2.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-servlet_2.5_spec -Dversion=1.2 -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jpa_3.0_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jpa_3.0_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/user/orm/geronimo-jta_1.1_spec-1.1.1.jar -DgroupId=org.apache.geronimo.specs -DartifactId=geronimo-jta_1.1_spec -Dversion=1.1.1 -Dpackaging=jar -DgeneratePom=true<br />
call mvn install:install-file -Dfile=%LIB%/user/orm/datanucleus-appengine-1.0.0.final.jar -DgroupId=org.datanucleus -DartifactId=datanucleus-appengine -Dversion=1.0.0.final -Dpackaging=jar -DgeneratePom=true</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thai Ha</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-24689</link>
		<dc:creator>Thai Ha</dc:creator>
		<pubDate>Sat, 11 Apr 2009 22:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-24689</guid>
		<description>I have just created a simple HelloWorld application using maven 2 which can be deployed to Google App Engine with simple command &quot;mvn install&quot;
Anyone who is interested can download it from

http://winkjava.110mb.com/gaehelloworld/helloworld.zip

Happy hacking!</description>
		<content:encoded><![CDATA[<p>I have just created a simple HelloWorld application using maven 2 which can be deployed to Google App Engine with simple command &#8220;mvn install&#8221;<br />
Anyone who is interested can download it from</p>
<p><a href="http://winkjava.110mb.com/gaehelloworld/helloworld.zip" rel="nofollow">http://winkjava.110mb.com/gaehelloworld/helloworld.zip</a></p>
<p>Happy hacking!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Detective Conan Anime &#124; detectiveconananime.com</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-24637</link>
		<dc:creator>Detective Conan Anime &#124; detectiveconananime.com</dc:creator>
		<pubDate>Fri, 10 Apr 2009 23:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-24637</guid>
		<description>[...] Dan Walmsley Â» Blog Archive Â» Building Google App Engine Java &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Dan Walmsley Â» Blog Archive Â» Building Google App Engine Java &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: What is Google App Engine? &#124; Gadgets &#38; Tech</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-24484</link>
		<dc:creator>What is Google App Engine? &#124; Gadgets &#38; Tech</dc:creator>
		<pubDate>Wed, 08 Apr 2009 14:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-24484</guid>
		<description>[...] Dan Walmsley » Blog Archive » Building Google App Engine Java &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Dan Walmsley » Blog Archive » Building Google App Engine Java &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: What is Google App Engine? &#124; Gadgets &#38; Tech</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-24483</link>
		<dc:creator>What is Google App Engine? &#124; Gadgets &#38; Tech</dc:creator>
		<pubDate>Wed, 08 Apr 2009 14:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-24483</guid>
		<description>[...] Dan Walmsley » Blog Archive » Building Google App Engine Java &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Dan Walmsley » Blog Archive » Building Google App Engine Java &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Lawson</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-24470</link>
		<dc:creator>James Lawson</dc:creator>
		<pubDate>Wed, 08 Apr 2009 07:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-24470</guid>
		<description>Dan,
Quick stuff on getting the maven structure set up, but your page doesn&#039;t seem to be rendering right to follow the example.  I&#039;ve tried Firefox, IE, and Opera with no success!
James</description>
		<content:encoded><![CDATA[<p>Dan,<br />
Quick stuff on getting the maven structure set up, but your page doesn&#8217;t seem to be rendering right to follow the example.  I&#8217;ve tried Firefox, IE, and Opera with no success!<br />
James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.danwalmsley.com/2009/04/07/building-google-app-engine-java-projects-with-maven2/comment-page-1/#comment-24469</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 08 Apr 2009 07:46:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.danwalmsley.com/?p=209#comment-24469</guid>
		<description>Your POM formatting is bust, can you put in a pre tag or something?

I&#039;m a bit confused about what the output is.  You aim is to use Maven layout for Java and resource sources, and Google layout for the war content?  FWFIW I tried that and it works with the Eclipse tooling as well.</description>
		<content:encoded><![CDATA[<p>Your POM formatting is bust, can you put in a pre tag or something?</p>
<p>I&#8217;m a bit confused about what the output is.  You aim is to use Maven layout for Java and resource sources, and Google layout for the war content?  FWFIW I tried that and it works with the Eclipse tooling as well.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
