diff --git a/Doc/Sd1/gettingStarted.xml b/Doc/Sd1/gettingStarted.xml
index 3e25b542c0d483290580ca9aaf75d22c84aac313..d57d6efc2baba545e9dbfacbad47eb1d84277121 100644
--- a/Doc/Sd1/gettingStarted.xml
+++ b/Doc/Sd1/gettingStarted.xml
@@ -876,12 +876,11 @@ loop # 12</screen>
 
       <orderedlist>
         <listitem>
-          <para>Due to a change in the <xref linkend="glo_Maven"/> software
-          create unfortunately a <xref linkend="glo_Maven"/> archetype
-          repository like <uri
+          <para>Current <xref linkend="glo_Maven"/> versions unfortunately
+          require additional archetype repository like <uri
           xlink:href="https://maven.mi.hdm-stuttgart.de/nexus/repository/mi-maven">https://maven.mi.hdm-stuttgart.de/nexus/repository/mi-maven</uri>
-          must be defined in a configuration file. Please follow the
-          subsequent steps:</para>
+          to be defined in a configuration file. Please follow the subsequent
+          steps:</para>
 
           <itemizedlist>
             <listitem>
@@ -1182,6 +1181,30 @@ public class App {
           </glossdef>
         </glossentry>
       </glosslist>
+
+      <para>You may optionally configure standard <xref linkend="glo_Maven"/>
+      <quote>central</quote> artifacts to be downloaded from the MI nexus
+      proxy directory by adding the following to
+      <filename>settings.xml</filename>:</para>
+
+      <programlisting language="xml">&lt;settings ...&gt;
+
+  &lt;servers&gt; ... &lt;/servers&gt;
+
+  &lt;mirrors&gt;
+    &lt;mirror&gt;
+      &lt;id&gt;nexus&lt;/id&gt;
+      &lt;name&gt;MI Central&lt;/name&gt;
+      &lt;mirrorOf&gt;central&lt;/mirrorOf&gt;
+      &lt;url&gt;<emphasis role="red">https://maven.mi.hdm-stuttgart.de/nexus/repository/maven-central</emphasis>&lt;/url&gt;
+    &lt;/mirror&gt;
+  &lt;/mirrors&gt;
+
+  &lt;profiles&gt; ... &lt;/profiles&gt;
+
+  &lt;activeProfiles&gt; ... &lt;/activeProfiles&gt;
+
+&lt;/settings&gt;</programlisting>
     </section>
 
     <section xml:id="sd1FirstJavaProject">