You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2011/11/28 20:57:39 UTC

svn commit: r1207550 - in /wicket/common/site/trunk: _site/contribute/build.html contribute/build.md

Author: dashorst
Date: Mon Nov 28 19:57:38 2011
New Revision: 1207550

URL: http://svn.apache.org/viewvc?rev=1207550&view=rev
Log:
Updated page to reflect 6.0.x development

Modified:
    wicket/common/site/trunk/_site/contribute/build.html
    wicket/common/site/trunk/contribute/build.md

Modified: wicket/common/site/trunk/_site/contribute/build.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/contribute/build.html?rev=1207550&r1=1207549&r2=1207550&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/contribute/build.html (original)
+++ wicket/common/site/trunk/_site/contribute/build.html Mon Nov 28 19:57:38 2011
@@ -169,7 +169,7 @@
 
 <h2 id='getting_your_wicket_version'>Getting your Wicket version</h2>
 
-<p>When you build from SVN you should check out the whole of trunk or the selected branch as the project consists of various modules that may depend on one another. For the current (1.5) development branch, you will need to check out:</p>
+<p>When you build from SVN you should check out the whole of trunk or the selected branch as the project consists of various modules that may depend on one another. For the current (6.x) development branch, you will need to check out:</p>
 <div class='highlight'><pre><code class='console'><span class='go'>svn co http://svn.apache.org/repos/asf/wicket/trunk wicket</span>
 </code></pre>
 </div>
@@ -190,9 +190,9 @@
 
 <h2 id='building_wicket'>Building Wicket</h2>
 
-<p>The current development version of Wicket requires at least jdk 1.5.</p>
+<p>The current development version of Wicket requires at least jdk 6.</p>
 
-<p>If you want to ensure that your Wicket version is built using JDK-1.5 and fully compatible with that Java version, you will need to build it with a Java 1.5 compiler and runtime library.</p>
+<p>If you want to ensure that your Wicket version is built using JDK-6 and fully compatible with that Java version, you will need to build it with a Java 6 compiler and runtime library.</p>
 
 <p>If you haven&#8217;t done so already change into the Wicket root directory:</p>
 <div class='highlight'><pre><code class='console'><span class='go'>cd wicket</span>
@@ -228,8 +228,8 @@
 <p>Now you have built your own fresh Wicket jar you must be anxious to use it. This is now as simple as adding a snapshot dependency on the specific Wicket version. So in your pom.xml you can use:</p>
 <div class='highlight'><pre><code class='xml'><span class='nt'>&lt;dependency&gt;</span>
     <span class='nt'>&lt;groupId&gt;</span>org.apache.wicket<span class='nt'>&lt;/groupId&gt;</span>
-    <span class='nt'>&lt;artifactId&gt;</span>wicket<span class='nt'>&lt;/artifactId&gt;</span>
-    <span class='nt'>&lt;version&gt;</span>1.5-SNAPSHOT<span class='nt'>&lt;/version&gt;</span>
+    <span class='nt'>&lt;artifactId&gt;</span>wicket-core<span class='nt'>&lt;/artifactId&gt;</span>
+    <span class='nt'>&lt;version&gt;</span>6.0-SNAPSHOT<span class='nt'>&lt;/version&gt;</span>
     <span class='nt'>&lt;scope&gt;</span>compile<span class='nt'>&lt;/scope&gt;</span>
 <span class='nt'>&lt;/dependency&gt;</span>
 </code></pre>

Modified: wicket/common/site/trunk/contribute/build.md
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/contribute/build.md?rev=1207550&r1=1207549&r2=1207550&view=diff
==============================================================================
--- wicket/common/site/trunk/contribute/build.md (original)
+++ wicket/common/site/trunk/contribute/build.md Mon Nov 28 19:57:38 2011
@@ -24,7 +24,7 @@ Mergere website.
 
 When you build from SVN you should check out the whole of trunk or the
 selected branch as the project consists of various modules that may depend on
-one another. For the current (1.5) development branch, you will need to check
+one another. For the current (6.x) development branch, you will need to check
 out:
 
 {% highlight console %}
@@ -54,11 +54,11 @@ This top-level project doesn't have sour
 
 ## Building Wicket ##
 
-The current development version of Wicket requires at least jdk 1.5.
+The current development version of Wicket requires at least jdk 6.
 
-If you want to ensure that your Wicket version is built using JDK-1.5 and
+If you want to ensure that your Wicket version is built using JDK-6 and
 fully compatible with that Java version, you will need to build it with a Java
-1.5 compiler and runtime library.
+6 compiler and runtime library.
 
 If you haven't done so already change into the Wicket root directory:
 
@@ -111,8 +111,8 @@ version. So in your pom.xml you can use:
 {% highlight xml %}
 <dependency>
     <groupId>org.apache.wicket</groupId>
-    <artifactId>wicket</artifactId>
-    <version>1.5-SNAPSHOT</version>
+    <artifactId>wicket-core</artifactId>
+    <version>6.0-SNAPSHOT</version>
     <scope>compile</scope>
 </dependency>
 {% endhighlight %}