<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dev-eth0.de &#187; maven</title>
	<atom:link href="http://www.dev-eth0.de/tag/maven/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dev-eth0.de</link>
	<description>Zu viele Lösungen für zu wenig Probleme...</description>
	<lastBuildDate>Tue, 24 Jan 2012 11:20:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Use Maven&#8217;s Jetty Plugin with SSL</title>
		<link>http://www.dev-eth0.de/use-mavens-jetty-plugin-with-ssl/</link>
		<comments>http://www.dev-eth0.de/use-mavens-jetty-plugin-with-ssl/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 16:55:10 +0000</pubDate>
		<dc:creator>dev-eth0</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[jetty]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.dev-eth0.de/?p=845</guid>
		<description><![CDATA[In a certain stage of webapp-development, there is the requirement to deploy your application to a "real" webserver. If you are using Maven for your build-management you probably use the provided jetty plugin. This plugin allows you to start your application without downloading and configuring a webserver on your own.

The difference between a webserver ...]]></description>
			<content:encoded><![CDATA[<p>In a certain stage of webapp-development, there is the requirement to deploy your application to a &#8220;real&#8221; webserver. If you are using <a href="http://maven.apache.org/" target="_blank">Maven</a> for your build-management you probably use the provided <a href="http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin" target="_blank">jetty plugin</a>. This plugin allows you to start your application without downloading and configuring a webserver on your own.</p>
<p>The difference between a webserver on the internet and a local machine is the accessibility and the need, to encrypt your sessions. This is normally done by providing a HTTPS-protocol access to your web-application.</p>
<p><a href="http://mrhaki.blogspot.com/" target="_blank">Hubert Klein Ikkink</a> has written a nice blog-post how this can be achieve with the jetty-maven plugin.</p>
<p><a href="http://mrhaki.blogspot.com/2009/05/configure-maven-jetty-plugin-for-ssl.html" target="_blank">Click here for the blog-post</a></p>
<p class="wp-flattr-button"></p> <p><a href="http://www.dev-eth0.de/?flattrss_redirect&amp;id=845&amp;md5=55aaa32619109824a00276e1873ac9e9" title="Flattr" target="_blank"><img src="http://www.dev-eth0.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.dev-eth0.de/use-mavens-jetty-plugin-with-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Einführung in Maven</title>
		<link>http://www.dev-eth0.de/einfuhrung-in-maven/</link>
		<comments>http://www.dev-eth0.de/einfuhrung-in-maven/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 10:38:32 +0000</pubDate>
		<dc:creator>dev-eth0</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.dev-eth0.de/?p=812</guid>
		<description><![CDATA[Innerhalb eines unserer Projekte lernen wir gerade die Vorteile von Maven kennen. Dies betrifft vor allem das dynamische Nachladen von benötigten Libraries und die Möglichkeiten, die man zum Deployen einer Anwendung hat.

Bei unserem Projekt handelt es sich einerseits um eine Tapestry 5 Anwendung. Diese lässt sich auf jedem beliebigen Server mit installiertem Maven über ...]]></description>
			<content:encoded><![CDATA[<p>Innerhalb eines unserer Projekte lernen wir gerade die Vorteile von Maven kennen. Dies betrifft vor allem das dynamische Nachladen von benötigten Libraries und die Möglichkeiten, die man zum Deployen einer Anwendung hat.</p>
<p>Bei unserem Projekt handelt es sich einerseits um eine Tapestry 5 Anwendung. Diese lässt sich auf jedem beliebigen Server mit installiertem Maven über den Befehl</p>
<pre class="brush:java">mvn jetty:run
</pre>
<p>starten.</p>
<p>Auf der anderen Seite haben wir dann noch eine einfache Java-Anwendung, die eine Verbindung über einen Socket aufbaut.</p>
<p>Als Einführung ins Thema Maven haben wir uns das folgende Buch gekauft:<br />
<a href="http://www.amazon.de/gp/product/0596007507?ie=UTF8&amp;tag=bidstatsde-21&amp;linkCode=as2&amp;camp=1638&amp;creative=19454&amp;creativeASIN=0596007507">Maven: A Developer&#8217;s Notebook (Developer&#8217;s Notebooks)</a></p>
<p>Zwar behandelt es eine etwas ältere Maven Version, es ist aber gut für die Grundlagen geeignet.</p>
<p class="wp-flattr-button"></p> <p><a href="http://www.dev-eth0.de/?flattrss_redirect&amp;id=812&amp;md5=a79937719e2f9b6bc2e2d9d60836497e" title="Flattr" target="_blank"><img src="http://www.dev-eth0.de/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.dev-eth0.de/einfuhrung-in-maven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

