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"><settings ...> + + <servers> ... </servers> + + <mirrors> + <mirror> + <id>nexus</id> + <name>MI Central</name> + <mirrorOf>central</mirrorOf> + <url><emphasis role="red">https://maven.mi.hdm-stuttgart.de/nexus/repository/maven-central</emphasis></url> + </mirror> + </mirrors> + + <profiles> ... </profiles> + + <activeProfiles> ... </activeProfiles> + +</settings></programlisting> </section> <section xml:id="sd1FirstJavaProject">