You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by gi...@apache.org on 2021/04/03 18:42:38 UTC

[directory-site] branch asf-site updated: Updated site from master (91a455d069274d09b3e8e9fb8b7152d522bbf107)

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/directory-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new f77cf80  Updated site from master (91a455d069274d09b3e8e9fb8b7152d522bbf107)
f77cf80 is described below

commit f77cf805ad7af3eb40389f911a2e1edbdd730066
Author: jenkins <bu...@apache.org>
AuthorDate: Sat Apr 3 18:42:35 2021 +0000

    Updated site from master (91a455d069274d09b3e8e9fb8b7152d522bbf107)
---
 .../basic-ug/1.3-installing-and-starting.html      |  8 +++----
 content/apacheds/developer-guide.html              |  4 ++--
 content/apacheds/index.xml                         |  2 +-
 content/api/developer-guide.html                   |  2 +-
 content/api/index.xml                              |  2 +-
 content/api/java-api.html                          |  2 +-
 .../api/user-guide/1.4-preparation-to-code.html    |  2 +-
 content/fortress/installation/apacheds.html        |  8 +++----
 content/index.xml                                  |  6 ++---
 content/mavibot/developer-guide.html               | 10 ++++-----
 content/mavibot/index.xml                          |  2 +-
 content/sitemap.xml                                | 26 +++++++++++-----------
 .../developers-howtos/developers-howtos.html       |  2 +-
 13 files changed, 38 insertions(+), 38 deletions(-)

diff --git a/content/apacheds/basic-ug/1.3-installing-and-starting.html b/content/apacheds/basic-ug/1.3-installing-and-starting.html
index 91ba588..515310e 100644
--- a/content/apacheds/basic-ug/1.3-installing-and-starting.html
+++ b/content/apacheds/basic-ug/1.3-installing-and-starting.html
@@ -171,15 +171,15 @@
 </nav>
 <h2 id="prerequisites">Prerequisites</h2>
 <ul>
-<li><strong>Java 7.0</strong>. We recommend using <a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Oracle&rsquo;s JDK</a>.</li>
+<li><strong>Java 8</strong>. We recommend <a href="https://adoptopenjdk.net/">AdoptOpenJDK</a>.</li>
 </ul>
 <p>You can check your java installation with:</p>
 <pre><code>java -version
 </code></pre>
 <p>this should response something like:</p>
-<pre><code>java version &quot;1.7.0_45&quot;
-Java(TM) SE Runtime Environment (build 1.7.0_45-b18)
-Java HotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)
+<pre><code>openjdk version &quot;1.8.0_282&quot;
+OpenJDK Runtime Environment (build 1.8.0_282-b08)
+OpenJDK 64-Bit Server VM (build 25.282-b08, mixed mode)
 </code></pre>
 <ul>
 <li><strong>384 MB RAM</strong> for the JVM. That&rsquo;s the default setting, how to change that is described [here|1.4. Basic configuration tasks#MemoryAllocation]</li>
diff --git a/content/apacheds/developer-guide.html b/content/apacheds/developer-guide.html
index 391ee5c..9cf1e00 100644
--- a/content/apacheds/developer-guide.html
+++ b/content/apacheds/developer-guide.html
@@ -152,7 +152,7 @@
 </DIV>
 <h2 id="coding-standards">Coding standards</h2>
 <p>The applicable coding standards for ADS 2.0 are described in <a href="coding-standards.html">Coding Standards</a></p>
-<p>There are some more rules, as we are using <strong>Java 6</strong> now :</p>
+<p>There are some more rules, as we are using <strong>Java 8</strong> now :</p>
 <ul>
 <li>Use generics as much as you can. Generic are a good way to avoid casting, and it enforce the usage of the correct type.</li>
 <li>If you can avoid <em>Iterators</em>, do so. There is this cool construction with a <strong>for( Type t:<collection instance> )</strong> : use it !</li>
@@ -161,7 +161,7 @@
 </ul>
 <h2 id="releasing-apacheds">Releasing ApacheDS</h2>
 <p>Here is a guide on how to cut a new release. This is a long process, expect it to last a few hours !</p>
-<p>First, you need to have a recent version of Maven (we are using 3.0.4) and a recent version of the JDK (Java 8 is required, due to some checkstye plugin requiring it. Note that the generated code is Java 7 compliant).</p>
+<p>First, you need to have a recent version of Maven (we are using 3.0.4) and a recent version of the JDK (Java 8 is required).</p>
 <h3 id="maven-settings">Maven Settings</h3>
 <p>You&rsquo;ll need a settings section for the <strong>Nexus</strong> and <strong>people.apache.org</strong> servers with a password or a path to the SSH key used. Here&rsquo;s what my <strong>settings.xml</strong> file in <strong>~/.m2</strong> looks like:</p>
 <div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-xml" data-lang="xml"><span style="color:#008000;font-weight:bold">&lt;settings</span><span style="color:#008000;font-weight:bold">&gt;</span>
diff --git a/content/apacheds/index.xml b/content/apacheds/index.xml
index 52ec26d..d187518 100644
--- a/content/apacheds/index.xml
+++ b/content/apacheds/index.xml
@@ -281,7 +281,7 @@ Then the request is going through every Interceptor being registered for this op
       
       <guid>https://directory.apache.org/apacheds/basic-ug/1.3-installing-and-starting.html</guid>
       <description>1.3 - Installing and starting the server This section describes how ApacheDS can be installed and started on different platforms.
- Prerequisites Download a server installer     Starting and stopping the server   Installation on Mac OS X  Starting and stopping the server   Installation on Linux   Prerequisites  Java 7.0. We recommend using Oracle&amp;rsquo;s JDK.  You can check your java installation with:</description>
+ Prerequisites Download a server installer     Starting and stopping the server   Installation on Mac OS X  Starting and stopping the server   Installation on Linux   Prerequisites  Java 8. We recommend AdoptOpenJDK.  You can check your java installation with:</description>
     </item>
     
     <item>
diff --git a/content/api/developer-guide.html b/content/api/developer-guide.html
index df02a65..76fa4c2 100644
--- a/content/api/developer-guide.html
+++ b/content/api/developer-guide.html
@@ -162,7 +162,7 @@
 </DIV>
 <h2 id="coding-standards">Coding standards</h2>
 <p>The applicable coding standards for LDAP API 1.0 are described in <a href="coding-standards.html">Coding Standards</a></p>
-<p>There are some more rules, as we are using <strong>Java 6</strong> now :</p>
+<p>There are some more rules, as we are using <strong>Java 8</strong> now :</p>
 <ul>
 <li>Use generics as much as you can. Generic are a good way to avoid casting, and it enforce the usage of the correct type.</li>
 <li>If you can avoid <em>Iterators</em>, do so. There is this cool construction with a <strong>for( Type t:<collection instance> )</strong> : use it !</li>
diff --git a/content/api/index.xml b/content/api/index.xml
index 854e272..02e462d 100644
--- a/content/api/index.xml
+++ b/content/api/index.xml
@@ -66,7 +66,7 @@ We&amp;rsquo;ll use the term LDAP to represent the protocol and LDAP server to r
       <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
       
       <guid>https://directory.apache.org/api/user-guide/1.4-preparation-to-code.html</guid>
-      <description>1.4 - Preparation to code The Apache Directory LDAP API requires Java 7 or higher.
+      <description>1.4 - Preparation to code The Apache Directory LDAP API requires Java 8 or higher.
 Secondly, you must download the API 1.0 or API 2.0. This package contains the LDAP API plus all of its dependent jars (like commons-lang, slf4j&amp;hellip;).
 If you&amp;rsquo;re using Maven, add the following dependency on api-all.jar :
 :::XML &amp;lt;dependency&amp;gt; &amp;lt;groupId&amp;gt;org.apache.directory.api&amp;lt;/groupId&amp;gt; &amp;lt;artifactId&amp;gt;api-all&amp;lt;/artifactId&amp;gt; &amp;lt;version&amp;gt;${ldap-api-version}&amp;lt;/version&amp;gt; &amp;lt;/dependency&amp;gt;  and all of its dependent jar files will be included automatically. That&amp;rsquo;s it, now you should be ready to code!</description>
diff --git a/content/api/java-api.html b/content/api/java-api.html
index d7cea78..1eb4b2d 100644
--- a/content/api/java-api.html
+++ b/content/api/java-api.html
@@ -202,7 +202,7 @@
 <h2 id="features">Features</h2>
 <p>The <a href="user-guide.html">User Guide</a> pages gives the list of features the API provides.</p>
 <h2 id="prerequisite">Prerequisite</h2>
-<p>This API requires <strong>Java 7</strong> or upper.</p>
+<p>This API requires <strong>Java 8</strong> or higher.</p>
 
 
             
diff --git a/content/api/user-guide/1.4-preparation-to-code.html b/content/api/user-guide/1.4-preparation-to-code.html
index 15a314c..74828cf 100644
--- a/content/api/user-guide/1.4-preparation-to-code.html
+++ b/content/api/user-guide/1.4-preparation-to-code.html
@@ -157,7 +157,7 @@
 
             
 	<h1 id="14---preparation-to-code">1.4 - Preparation to code</h1>
-<p>The <strong>Apache Directory LDAP API</strong> requires <strong>Java 7</strong> or higher.</p>
+<p>The <strong>Apache Directory LDAP API</strong> requires <strong>Java 8</strong> or higher.</p>
 <p>Secondly, you must download the <strong><a href="https://directory.apache.org/api/downloads-1.html">API 1.0</a></strong> or <strong><a href="https://directory.apache.org/api/downloads-2.html">API 2.0</a></strong>. This package contains the <strong>LDAP API</strong> plus all of its dependent jars (like <em>commons-lang</em>, <em>slf4j</em>&hellip;).</p>
 <p>If you&rsquo;re using <strong>Maven</strong>, add the following dependency on <em>api-all.jar</em> :</p>
 <pre><code>:::XML
diff --git a/content/fortress/installation/apacheds.html b/content/fortress/installation/apacheds.html
index 437d82b..93a2ef5 100644
--- a/content/fortress/installation/apacheds.html
+++ b/content/fortress/installation/apacheds.html
@@ -134,11 +134,11 @@
 <h2 id="prerequisites">Prerequisites</h2>
 <p>There a few mandatory elements that need to be installed on the <strong>ApacheDS Host</strong> :</p>
 <ul>
-<li>Java 7 or greated sdk</li>
+<li>Java 8 or greated sdk</li>
 </ul>
 <p>On the <strong>Fortress Host</strong>, you will need those components :</p>
 <ul>
-<li>Java 7 or greated sdk</li>
+<li>Java 8 or greated sdk</li>
 <li>Apache Maven 3+</li>
 <li>A web browser</li>
 <li>Git</li>
@@ -148,7 +148,7 @@
 <p>On the <strong>ApacheDS Host</strong> :</p>
 <p>Follow the installation guide on <a href="https://directory.staging.apache.org/apacheds/downloads.html">the ApacheDS download pages</a> (each page has an installation description).</p>
 <p>The base installation will install a server running on port <em>10389</em>, with a default user <em>uid=admin,ou=system</em> and the password <em>secret</em>. Please change those values !!!</p>
-<p>Note that the server requires a Java 7 sdk to run.</p>
+<p>Note that the server requires a 8 sdk to run.</p>
 <h2 id="installing-apache-directory-studio">Installing Apache Directory Studio</h2>
 <p>On the <strong>Fortress Host</strong> :</p>
 <p>We will install <strong>Apache Directory Studio</strong> which is a convenient tool when it comes to managing an <strong>LDAP</strong> server. Install using <a href="https://directory.apache.org/studio/downloads.html">the following documentation</a>. Again, each link contains directions on how to install this component.</p>
@@ -156,7 +156,7 @@
 <p>Check that the credentials you have set (defaulting to <em>uid=admin,ou=system</em> and <em>secret</em>)  using <em>Simple Authentication</em>, and clicking on <em>Check Authentication</em> : work also.</p>
 <p>The complete description of the steps are found <a href="https://directory.apache.org/studio/users-guide/ldap_browser/gettingstarted_create_connection.html">on this page</a></p>
 <h2 id="installing-fortress-core">Installing Fortress Core</h2>
-<p>Assuming that <strong>Git</strong>, <strong>Java 7</strong> and <strong>Apache Maven</strong> are installed on the <strong>Fortress Host</strong>, and that <strong>ApacheDS</strong> is running on the <strong>ApacheDS Host</strong>, we can now configure and install <strong>Fortress Core</strong> on the <strong>Fortress Host</strong></p>
+<p>Assuming that <strong>Git</strong>, <strong>Java 8</strong> and <strong>Apache Maven</strong> are installed on the <strong>Fortress Host</strong>, and that <strong>ApacheDS</strong> is running on the <strong>ApacheDS Host</strong>, we can now configure and install <strong>Fortress Core</strong> on the <strong>Fortress Host</strong></p>
 <p>The setup will use your specific configuration to create everything needed on the LDAP server to operate <strong>Fortress</strong>. It will also inject specific schema elements into the ldap server; entries that are required for <em>Fortress</em> to work. Once done, the <strong>Fortress</strong> APIs are ready to use.</p>
 <DIV class="info" markdown="1">
   The setup phase must be performed once per LDAP server instance.  But every machine that uses Fortress, must be configured to point to the same LDAP server (as you would expect) that was initially setup.  This will be explained later on.
diff --git a/content/index.xml b/content/index.xml
index aad8c2d..608b497 100644
--- a/content/index.xml
+++ b/content/index.xml
@@ -393,7 +393,7 @@ Then the request is going through every Interceptor being registered for this op
       
       <guid>https://directory.apache.org/apacheds/basic-ug/1.3-installing-and-starting.html</guid>
       <description>1.3 - Installing and starting the server This section describes how ApacheDS can be installed and started on different platforms.
- Prerequisites Download a server installer     Starting and stopping the server   Installation on Mac OS X  Starting and stopping the server   Installation on Linux   Prerequisites  Java 7.0. We recommend using Oracle&amp;rsquo;s JDK.  You can check your java installation with:</description>
+ Prerequisites Download a server installer     Starting and stopping the server   Installation on Mac OS X  Starting and stopping the server   Installation on Linux   Prerequisites  Java 8. We recommend AdoptOpenJDK.  You can check your java installation with:</description>
     </item>
     
     <item>
@@ -442,7 +442,7 @@ Each operation received by the DirectoryService will be processed by various int
       <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
       
       <guid>https://directory.apache.org/api/user-guide/1.4-preparation-to-code.html</guid>
-      <description>1.4 - Preparation to code The Apache Directory LDAP API requires Java 7 or higher.
+      <description>1.4 - Preparation to code The Apache Directory LDAP API requires Java 8 or higher.
 Secondly, you must download the API 1.0 or API 2.0. This package contains the LDAP API plus all of its dependent jars (like commons-lang, slf4j&amp;hellip;).
 If you&amp;rsquo;re using Maven, add the following dependency on api-all.jar :
 :::XML &amp;lt;dependency&amp;gt; &amp;lt;groupId&amp;gt;org.apache.directory.api&amp;lt;/groupId&amp;gt; &amp;lt;artifactId&amp;gt;api-all&amp;lt;/artifactId&amp;gt; &amp;lt;version&amp;gt;${ldap-api-version}&amp;lt;/version&amp;gt; &amp;lt;/dependency&amp;gt;  and all of its dependent jar files will be included automatically. That&amp;rsquo;s it, now you should be ready to code!</description>
@@ -3847,7 +3847,7 @@ Hey, remember that those rules are not the best nor the worst, they are pretty m
       
       <guid>https://directory.apache.org/mavibot/developer-guide.html</guid>
       <description>Mavibot Developers Guide We will describe how to get the code, build it, and release it.
- Getting the source, Building the trunks  Prerequisites for building Maven JDK 7   Getting the code Building the trunk  Building the trunk, for real   Eclipse  Building eclipse files Maven settings   Coding standards   Test the Project Deploy a Snapshot Prepare the Release Stage the Release Build the Site Publish Source and Binary Distribution Packages Vote Release Deploy the Javadocs and XRef Update the web site Inform the world !</description>
+ Getting the source, Building the trunks  Prerequisites for building Maven JDK 8   Getting the code Building the trunk  Building the trunk, for real   Eclipse  Building eclipse files Maven settings   Coding standards   Test the Project Deploy a Snapshot Prepare the Release Stage the Release Build the Site Publish Source and Binary Distribution Packages Vote Release Deploy the Javadocs and XRef Update the web site Inform the world !</description>
     </item>
     
     <item>
diff --git a/content/mavibot/developer-guide.html b/content/mavibot/developer-guide.html
index 6e4f845..5c63b47 100644
--- a/content/mavibot/developer-guide.html
+++ b/content/mavibot/developer-guide.html
@@ -136,7 +136,7 @@
       <ul>
         <li><a href="#prerequisites-for-building">Prerequisites for building</a></li>
         <li><a href="#maven">Maven</a></li>
-        <li><a href="#jdk-7">JDK 7</a></li>
+        <li><a href="#jdk-8">JDK 8</a></li>
       </ul>
     </li>
     <li><a href="#getting-the-code">Getting the code</a></li>
@@ -170,7 +170,7 @@
 </nav>
 <h2 id="getting-the-source-building-the-trunks">Getting the source, Building the trunks</h2>
 <h3 id="prerequisites-for-building">Prerequisites for building</h3>
-<p>You must have installed <strong>Maven 3.0.4</strong> and have a <strong>JDK 7</strong> installed on your computer. A working internet connection is also mandatory, unless you have all the needed dependences and plugins loaded locally.</p>
+<p>You must have installed <strong>Maven 3.0.4</strong> and have a <strong>JDK 8</strong> installed on your computer. A working internet connection is also mandatory, unless you have all the needed dependences and plugins loaded locally.</p>
 <DIV class="note" markdown="1">
 If the build hangs or you get an out of memory exception please increase the heap space:
 <ul>
@@ -196,9 +196,9 @@ export PATH=$JAVA_HOME:$JAVA_HOME/bin:$MAVEN_HOME/bin:$PATH
 ...
 </code></pre>
 <p>Windows users, use Control Panel -&gt; System -&gt; Advanced -&gt; Environment Variables</p>
-<h3 id="jdk-7">JDK 7</h3>
+<h3 id="jdk-8">JDK 8</h3>
 <DIV class="note" markdown="1">
-We recommend using a version >= 1.7
+We recommend using a version >= 8
 </DIV>
 <p>Any newer version should also work.</p>
 <h2 id="getting-the-code">Getting the code</h2>
@@ -243,7 +243,7 @@ mvn eclipse:eclipse
 <p>You can declare new variables in Eclipse in <em>Windows -&gt; Preferences&hellip;</em> and selecting <em>Java -&gt; Build Path -&gt; Classpath Variables</em></p>
 <h2 id="coding-standards">Coding standards</h2>
 <p>The applicable coding standards for Mavibot are described in <a href="coding-standards.html">Coding Standards</a></p>
-<p>There are some more rules, as we are using <strong>Java 7</strong> now :</p>
+<p>There are some more rules, as we are using <strong>Java 8</strong> now :</p>
 <ul>
 <li>Use generics as much as you can. Generic are a good way to avoid casting, and it enforce the usage of the correct type.</li>
 <li>If you can avoid <em>Iterators</em>, do so. There is this cool construction with a <strong>for( Type t:<collection instance> )</strong> : use it !</li>
diff --git a/content/mavibot/index.xml b/content/mavibot/index.xml
index ac2a3cd..a76640b 100644
--- a/content/mavibot/index.xml
+++ b/content/mavibot/index.xml
@@ -195,7 +195,7 @@ Hey, remember that those rules are not the best nor the worst, they are pretty m
       
       <guid>https://directory.apache.org/mavibot/developer-guide.html</guid>
       <description>Mavibot Developers Guide We will describe how to get the code, build it, and release it.
- Getting the source, Building the trunks  Prerequisites for building Maven JDK 7   Getting the code Building the trunk  Building the trunk, for real   Eclipse  Building eclipse files Maven settings   Coding standards   Test the Project Deploy a Snapshot Prepare the Release Stage the Release Build the Site Publish Source and Binary Distribution Packages Vote Release Deploy the Javadocs and XRef Update the web site Inform the world !</description>
+ Getting the source, Building the trunks  Prerequisites for building Maven JDK 8   Getting the code Building the trunk  Building the trunk, for real   Eclipse  Building eclipse files Maven settings   Coding standards   Test the Project Deploy a Snapshot Prepare the Release Stage the Release Build the Site Publish Source and Binary Distribution Packages Vote Release Deploy the Javadocs and XRef Update the web site Inform the world !</description>
     </item>
     
     <item>
diff --git a/content/sitemap.xml b/content/sitemap.xml
index d7591ce..d606eb0 100644
--- a/content/sitemap.xml
+++ b/content/sitemap.xml
@@ -184,7 +184,7 @@
   
   <url>
     <loc>https://directory.apache.org/apacheds/basic-ug/1.3-installing-and-starting.html</loc>
-    <lastmod>2020-08-08T11:25:14+02:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -209,7 +209,7 @@
   
   <url>
     <loc>https://directory.apache.org/api/user-guide/1.4-preparation-to-code.html</loc>
-    <lastmod>2020-08-08T11:25:14+02:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1509,12 +1509,12 @@
   
   <url>
     <loc>https://directory.apache.org/apacheds.html</loc>
-    <lastmod>2021-02-28T16:01:16+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
     <loc>https://directory.apache.org/fortress/installation/apacheds.html</loc>
-    <lastmod>2020-08-08T11:25:14+02:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1524,7 +1524,7 @@
   
   <url>
     <loc>https://directory.apache.org/api.html</loc>
-    <lastmod>2021-01-08T01:05:26+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1589,12 +1589,12 @@
   
   <url>
     <loc>https://directory.apache.org/apacheds/developer-guide.html</loc>
-    <lastmod>2020-12-27T09:10:10+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
     <loc>https://directory.apache.org/studio/developers-howtos/developers-howtos.html</loc>
-    <lastmod>2020-12-27T09:10:10+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1784,7 +1784,7 @@
   
   <url>
     <loc>https://directory.apache.org/fortress.html</loc>
-    <lastmod>2020-12-28T23:58:56+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1884,12 +1884,12 @@
   
   <url>
     <loc>https://directory.apache.org/api/java-api.html</loc>
-    <lastmod>2021-01-08T01:05:26+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
     <loc>https://directory.apache.org/api/developer-guide.html</loc>
-    <lastmod>2020-12-27T09:10:10+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1909,7 +1909,7 @@
   
   <url>
     <loc>https://directory.apache.org/mavibot/developer-guide.html</loc>
-    <lastmod>2020-12-29T09:49:36+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -1919,7 +1919,7 @@
   
   <url>
     <loc>https://directory.apache.org/mavibot.html</loc>
-    <lastmod>2020-12-29T09:49:36+01:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
@@ -2209,7 +2209,7 @@
   
   <url>
     <loc>https://directory.apache.org/studio.html</loc>
-    <lastmod>2021-03-02T22:37:26+00:00</lastmod>
+    <lastmod>2021-04-03T20:40:15+02:00</lastmod>
   </url>
   
   <url>
diff --git a/content/studio/developers-howtos/developers-howtos.html b/content/studio/developers-howtos/developers-howtos.html
index 173418b..b85d95d 100644
--- a/content/studio/developers-howtos/developers-howtos.html
+++ b/content/studio/developers-howtos/developers-howtos.html
@@ -142,7 +142,7 @@
 <p>and various utility plugins.</p>
 <h2 id="prerequisites">Prerequisites</h2>
 <p>You can check about what is needed to be able to start coding on <a href="../developers-guide.html">the Developers&rsquo; guide</a>.</p>
-<p>In any case, you need a Java JDK 7, Eclipse Luna-SR2, Maven 3.2.5, subversion 1.8.8.</p>
+<p>In any case, you need a Java 8, Eclipse Luna-SR2, Maven 3.2.5, subversion 1.8.8.</p>
 <h2 id="howtos">Howtos</h2>
 <ul>
 <li><a href="howtos/table-widget.html">1 - Using the TableWidget<E> widget</a></li>