You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2012/09/20 21:19:28 UTC

svn commit: r832612 - in /websites/production/camel/content: book-in-one-page.html book-tutorials.html cache/main.pageCache tutorial-example-reportincident-part1.html

Author: buildbot
Date: Thu Sep 20 19:19:28 2012
New Revision: 832612

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/book-tutorials.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/tutorial-example-reportincident-part1.html

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Thu Sep 20 19:19:28 2012
@@ -4757,7 +4757,7 @@ Part 5 - Is about how embed Camel with S
 
 <h2><a shape="rect" name="BookInOnePage-Prerequisites"></a>Prerequisites</h2>
 <p>This tutorial uses the following frameworks:</p>
-<ul><li>Maven 2.0.9</li><li>Apache Camel 2.10.0</li><li>Apache CXF 2.6.1</li><li>Spring 3.0.7</li></ul>
+<ul><li>Maven 3.0.4</li><li>Apache Camel 2.10.0</li><li>Apache CXF 2.6.1</li><li>Spring 3.0.7</li></ul>
 
 
 <p><b>Note:</b> The sample project can be downloaded, see the <a shape="rect" href="#BookInOnePage-Resources">resources</a> section.</p>
@@ -4884,16 +4884,16 @@ mvn archetype:create -DgroupId=org.apach
 </div></div>
 <h3><a shape="rect" name="BookInOnePage-CXFwsdl2java"></a>CXF wsdl2java</h3>
 <p>Then we integration the CXF wsdl2java generator in the pom.xml so we have CXF generate the needed POJO classes for our webservice contract. <br clear="none">
-However at first we must configure maven to live in the modern world of Java 1.5 so we must add this to the pom.xml</p>
+However at first we must configure maven to live in the modern world of Java 1.6 so we must add this to the pom.xml</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
-			<span class="code-tag"><span class="code-comment">&lt;!-- to compile with 1.5 --&gt;</span></span>
+			<span class="code-tag"><span class="code-comment">&lt;!-- to compile with 1.6 --&gt;</span></span>
 			<span class="code-tag">&lt;plugin&gt;</span>
 				<span class="code-tag">&lt;groupId&gt;</span>org.apache.maven.plugins<span class="code-tag">&lt;/groupId&gt;</span>
 				<span class="code-tag">&lt;artifactId&gt;</span>maven-compiler-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
 				<span class="code-tag">&lt;configuration&gt;</span>
-					<span class="code-tag">&lt;source&gt;</span>1.5<span class="code-tag">&lt;/source&gt;</span>
-					<span class="code-tag">&lt;target&gt;</span>1.5<span class="code-tag">&lt;/target&gt;</span>
+					<span class="code-tag">&lt;source&gt;</span>1.6<span class="code-tag">&lt;/source&gt;</span>
+					<span class="code-tag">&lt;target&gt;</span>1.6<span class="code-tag">&lt;/target&gt;</span>
 				<span class="code-tag">&lt;/configuration&gt;</span>
 			<span class="code-tag">&lt;/plugin&gt;</span>
 </pre>
@@ -5045,14 +5045,9 @@ The <b>address</b> attribute defines the
 <p>To test if we are home free we run <tt>mvn clean compile</tt>.</p>
 
 <h3><a shape="rect" name="BookInOnePage-Runningourwebservice"></a>Running our webservice</h3>
-<p>Now that the code compiles we would like to run it in a web container, so we add jetty to our pom.xml so we can run <tt>mvn jetty:run</tt>:</p>
+<p>Now that the code compiles we would like to run it inside a web container, for this purpose we make use of Jetty which we will bootstrap using it's plugin <tt>org.mortbay.jetty:maven-jetty-plugin</tt>:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
-	<span class="code-tag">&lt;properties&gt;</span>
-             ...
-             <span class="code-tag">&lt;jetty-version&gt;</span>6.1.1<span class="code-tag">&lt;/jetty-version&gt;</span>
-	<span class="code-tag">&lt;/properties&gt;</span>
-
        <span class="code-tag">&lt;build&gt;</span>
            <span class="code-tag">&lt;plugins&gt;</span>
                ...
@@ -5064,7 +5059,7 @@ The <b>address</b> attribute defines the
                <span class="code-tag">&lt;/plugin&gt;</span>
 </pre>
 </div></div>
-<p><b>Notice:</b> We use Jetty v6.1.1 as never versions has troubles on my laptop. Feel free to try a newer version on your system, but v6.1.1 works flawless.</p>
+<p><b>Notice:</b> We make use of the Jetty version being defined inside the <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/camel/trunk/parent/pom.xml">Camel's Parent POM</a>.</p>
 
 <p>So to see if everything is in order we fire up jetty with <tt>mvn jetty:run</tt> and if everything is okay you should be able to access <tt><a shape="rect" class="external-link" href="http://localhost:8080" rel="nofollow">http://localhost:8080</a></tt>.<br clear="none">
 Jetty is smart that it will list the correct URI on the page to our web application, so just click on the link. This is smart as you don't have to remember the exact web context URI for your application - just fire up the default page and Jetty will help you.</p>

Modified: websites/production/camel/content/book-tutorials.html
==============================================================================
--- websites/production/camel/content/book-tutorials.html (original)
+++ websites/production/camel/content/book-tutorials.html Thu Sep 20 19:19:28 2012
@@ -598,7 +598,7 @@ Part 5 - Is about how embed Camel with S
 
 <h2><a shape="rect" name="BookTutorials-Prerequisites"></a>Prerequisites</h2>
 <p>This tutorial uses the following frameworks:</p>
-<ul><li>Maven 2.0.9</li><li>Apache Camel 2.10.0</li><li>Apache CXF 2.6.1</li><li>Spring 3.0.7</li></ul>
+<ul><li>Maven 3.0.4</li><li>Apache Camel 2.10.0</li><li>Apache CXF 2.6.1</li><li>Spring 3.0.7</li></ul>
 
 
 <p><b>Note:</b> The sample project can be downloaded, see the <a shape="rect" href="#BookTutorials-Resources">resources</a> section.</p>
@@ -725,16 +725,16 @@ mvn archetype:create -DgroupId=org.apach
 </div></div>
 <h3><a shape="rect" name="BookTutorials-CXFwsdl2java"></a>CXF wsdl2java</h3>
 <p>Then we integration the CXF wsdl2java generator in the pom.xml so we have CXF generate the needed POJO classes for our webservice contract. <br clear="none">
-However at first we must configure maven to live in the modern world of Java 1.5 so we must add this to the pom.xml</p>
+However at first we must configure maven to live in the modern world of Java 1.6 so we must add this to the pom.xml</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
-			<span class="code-tag"><span class="code-comment">&lt;!-- to compile with 1.5 --&gt;</span></span>
+			<span class="code-tag"><span class="code-comment">&lt;!-- to compile with 1.6 --&gt;</span></span>
 			<span class="code-tag">&lt;plugin&gt;</span>
 				<span class="code-tag">&lt;groupId&gt;</span>org.apache.maven.plugins<span class="code-tag">&lt;/groupId&gt;</span>
 				<span class="code-tag">&lt;artifactId&gt;</span>maven-compiler-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
 				<span class="code-tag">&lt;configuration&gt;</span>
-					<span class="code-tag">&lt;source&gt;</span>1.5<span class="code-tag">&lt;/source&gt;</span>
-					<span class="code-tag">&lt;target&gt;</span>1.5<span class="code-tag">&lt;/target&gt;</span>
+					<span class="code-tag">&lt;source&gt;</span>1.6<span class="code-tag">&lt;/source&gt;</span>
+					<span class="code-tag">&lt;target&gt;</span>1.6<span class="code-tag">&lt;/target&gt;</span>
 				<span class="code-tag">&lt;/configuration&gt;</span>
 			<span class="code-tag">&lt;/plugin&gt;</span>
 </pre>
@@ -886,14 +886,9 @@ The <b>address</b> attribute defines the
 <p>To test if we are home free we run <tt>mvn clean compile</tt>.</p>
 
 <h3><a shape="rect" name="BookTutorials-Runningourwebservice"></a>Running our webservice</h3>
-<p>Now that the code compiles we would like to run it in a web container, so we add jetty to our pom.xml so we can run <tt>mvn jetty:run</tt>:</p>
+<p>Now that the code compiles we would like to run it inside a web container, for this purpose we make use of Jetty which we will bootstrap using it's plugin <tt>org.mortbay.jetty:maven-jetty-plugin</tt>:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
-	<span class="code-tag">&lt;properties&gt;</span>
-             ...
-             <span class="code-tag">&lt;jetty-version&gt;</span>6.1.1<span class="code-tag">&lt;/jetty-version&gt;</span>
-	<span class="code-tag">&lt;/properties&gt;</span>
-
        <span class="code-tag">&lt;build&gt;</span>
            <span class="code-tag">&lt;plugins&gt;</span>
                ...
@@ -905,7 +900,7 @@ The <b>address</b> attribute defines the
                <span class="code-tag">&lt;/plugin&gt;</span>
 </pre>
 </div></div>
-<p><b>Notice:</b> We use Jetty v6.1.1 as never versions has troubles on my laptop. Feel free to try a newer version on your system, but v6.1.1 works flawless.</p>
+<p><b>Notice:</b> We make use of the Jetty version being defined inside the <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/camel/trunk/parent/pom.xml">Camel's Parent POM</a>.</p>
 
 <p>So to see if everything is in order we fire up jetty with <tt>mvn jetty:run</tt> and if everything is okay you should be able to access <tt><a shape="rect" class="external-link" href="http://localhost:8080" rel="nofollow">http://localhost:8080</a></tt>.<br clear="none">
 Jetty is smart that it will list the correct URI on the page to our web application, so just click on the link. This is smart as you don't have to remember the exact web context URI for your application - just fire up the default page and Jetty will help you.</p>

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/tutorial-example-reportincident-part1.html
==============================================================================
--- websites/production/camel/content/tutorial-example-reportincident-part1.html (original)
+++ websites/production/camel/content/tutorial-example-reportincident-part1.html Thu Sep 20 19:19:28 2012
@@ -79,7 +79,7 @@
 
 <h2><a shape="rect" name="Tutorial-Example-ReportIncident-Part1-Prerequisites"></a>Prerequisites</h2>
 <p>This tutorial uses the following frameworks:</p>
-<ul><li>Maven 2.0.9</li><li>Apache Camel 2.10.0</li><li>Apache CXF 2.6.1</li><li>Spring 3.0.7</li></ul>
+<ul><li>Maven 3.0.4</li><li>Apache Camel 2.10.0</li><li>Apache CXF 2.6.1</li><li>Spring 3.0.7</li></ul>
 
 
 <p><b>Note:</b> The sample project can be downloaded, see the <a shape="rect" href="#Tutorial-Example-ReportIncident-Part1-Resources">resources</a> section.</p>
@@ -206,16 +206,16 @@ mvn archetype:create -DgroupId=org.apach
 </div></div>
 <h3><a shape="rect" name="Tutorial-Example-ReportIncident-Part1-CXFwsdl2java"></a>CXF wsdl2java</h3>
 <p>Then we integration the CXF wsdl2java generator in the pom.xml so we have CXF generate the needed POJO classes for our webservice contract. <br clear="none">
-However at first we must configure maven to live in the modern world of Java 1.5 so we must add this to the pom.xml</p>
+However at first we must configure maven to live in the modern world of Java 1.6 so we must add this to the pom.xml</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
-			<span class="code-tag"><span class="code-comment">&lt;!-- to compile with 1.5 --&gt;</span></span>
+			<span class="code-tag"><span class="code-comment">&lt;!-- to compile with 1.6 --&gt;</span></span>
 			<span class="code-tag">&lt;plugin&gt;</span>
 				<span class="code-tag">&lt;groupId&gt;</span>org.apache.maven.plugins<span class="code-tag">&lt;/groupId&gt;</span>
 				<span class="code-tag">&lt;artifactId&gt;</span>maven-compiler-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
 				<span class="code-tag">&lt;configuration&gt;</span>
-					<span class="code-tag">&lt;source&gt;</span>1.5<span class="code-tag">&lt;/source&gt;</span>
-					<span class="code-tag">&lt;target&gt;</span>1.5<span class="code-tag">&lt;/target&gt;</span>
+					<span class="code-tag">&lt;source&gt;</span>1.6<span class="code-tag">&lt;/source&gt;</span>
+					<span class="code-tag">&lt;target&gt;</span>1.6<span class="code-tag">&lt;/target&gt;</span>
 				<span class="code-tag">&lt;/configuration&gt;</span>
 			<span class="code-tag">&lt;/plugin&gt;</span>
 </pre>
@@ -367,14 +367,9 @@ The <b>address</b> attribute defines the
 <p>To test if we are home free we run <tt>mvn clean compile</tt>.</p>
 
 <h3><a shape="rect" name="Tutorial-Example-ReportIncident-Part1-Runningourwebservice"></a>Running our webservice</h3>
-<p>Now that the code compiles we would like to run it in a web container, so we add jetty to our pom.xml so we can run <tt>mvn jetty:run</tt>:</p>
+<p>Now that the code compiles we would like to run it inside a web container, for this purpose we make use of Jetty which we will bootstrap using it's plugin <tt>org.mortbay.jetty:maven-jetty-plugin</tt>:</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
-	<span class="code-tag">&lt;properties&gt;</span>
-             ...
-             <span class="code-tag">&lt;jetty-version&gt;</span>6.1.1<span class="code-tag">&lt;/jetty-version&gt;</span>
-	<span class="code-tag">&lt;/properties&gt;</span>
-
        <span class="code-tag">&lt;build&gt;</span>
            <span class="code-tag">&lt;plugins&gt;</span>
                ...
@@ -386,7 +381,7 @@ The <b>address</b> attribute defines the
                <span class="code-tag">&lt;/plugin&gt;</span>
 </pre>
 </div></div>
-<p><b>Notice:</b> We use Jetty v6.1.1 as never versions has troubles on my laptop. Feel free to try a newer version on your system, but v6.1.1 works flawless.</p>
+<p><b>Notice:</b> We make use of the Jetty version being defined inside the <a shape="rect" class="external-link" href="https://svn.apache.org/repos/asf/camel/trunk/parent/pom.xml">Camel's Parent POM</a>.</p>
 
 <p>So to see if everything is in order we fire up jetty with <tt>mvn jetty:run</tt> and if everything is okay you should be able to access <tt><a shape="rect" class="external-link" href="http://localhost:8080" rel="nofollow">http://localhost:8080</a></tt>.<br clear="none">
 Jetty is smart that it will list the correct URI on the page to our web application, so just click on the link. This is smart as you don't have to remember the exact web context URI for your application - just fire up the default page and Jetty will help you.</p>