diff --git a/Doc/Sd1/gettingStarted.xml b/Doc/Sd1/gettingStarted.xml
index dc1bd4fe212fe23ea036c2c583668eacf1b4d95c..214f4af11599df162221d045f6799cc468b72ee2 100644
--- a/Doc/Sd1/gettingStarted.xml
+++ b/Doc/Sd1/gettingStarted.xml
@@ -2405,7 +2405,7 @@ nano ~/.m2/settings.xml <co linkends="sd1_fig_mavenMiRepo-2"
 
         <screen>mvn --batch-mode -e archetype:generate -DgroupId=de.hdm_stuttgart.mi.sd1 \
 -DartifactId=second -Dversion=0.9 -DarchetypeGroupId=de.hdm_stuttgart.mi \
--DarchetypeArtifactId=<emphasis role="red">mi-maven-archetype-helloworld</emphasis> -DarchetypeVersion=1.2
+-DarchetypeArtifactId=<emphasis role="red">mi-maven-archetype-helloworld</emphasis> -DarchetypeVersion=1.3
 
 [INFO] Scanning for projects...
       ...
@@ -2426,7 +2426,7 @@ nano ~/.m2/settings.xml <co linkends="sd1_fig_mavenMiRepo-2"
             linkends="sd1_fig_mavenMiRepoCliDetails-3"
             xml:id="sd1_fig_mavenMiRepoCliDetails-3-co"/>
  -D<emphasis role="red">archetypeArtifactId</emphasis>=mi-maven-archetype-helloworld \
- -D<emphasis role="red">archetypeVersion</emphasis>=1.2 \
+ -D<emphasis role="red">archetypeVersion</emphasis>=1.3 \
                         \
  -D<emphasis role="red">groupId</emphasis>=de.hdm_stuttgart.mi.sd1 <co
             linkends="sd1_fig_mavenMiRepoCliDetails-4"
@@ -2796,7 +2796,7 @@ Generating /ma/goik/First/target/site/apidocs/help-doc.html...
 
                   <listitem>
                     <para><property>archetypeVersion</property>:
-                    <option>1.2</option></para>
+                    <option>1.3</option></para>
                   </listitem>
                 </itemizedlist>
 
diff --git a/ws/Archetypes/mi-maven-archetype-helloworld/pom.xml b/ws/Archetypes/mi-maven-archetype-helloworld/pom.xml
index 5de886e1bbde49b620cb4de12381ebe86fd58be5..14cb7802653ef0dc60c16b5c028e0fabe66019fd 100644
--- a/ws/Archetypes/mi-maven-archetype-helloworld/pom.xml
+++ b/ws/Archetypes/mi-maven-archetype-helloworld/pom.xml
@@ -5,7 +5,7 @@
 
   <groupId>de.hdm_stuttgart.mi</groupId>
   <artifactId>mi-maven-archetype-helloworld</artifactId>
-  <version>1.2</version>
+  <version>1.3</version>
 
   <packaging>maven-archetype</packaging>
 
diff --git a/ws/Archetypes/mi-maven-archetype-helloworld/src/main/resources/archetype-resources/pom.xml b/ws/Archetypes/mi-maven-archetype-helloworld/src/main/resources/archetype-resources/pom.xml
index c38b10e2746feaef1abd233787d60f41ef78f71b..d45486b0199150e4879f29af897fd739ca39bb3f 100644
--- a/ws/Archetypes/mi-maven-archetype-helloworld/src/main/resources/archetype-resources/pom.xml
+++ b/ws/Archetypes/mi-maven-archetype-helloworld/src/main/resources/archetype-resources/pom.xml
@@ -9,7 +9,7 @@
 
   <name>${artifactId}</name>
 
-  <url>https://freedocs.mi.hdm-stuttgart.de/sd1SectToolsOfTheTrade2.html</url>
+  <url>https://freedocs.mi.hdm-stuttgart.de/sd1_sect_mavenCli.html</url>
 
   <description>Basic Java project.</description>
 
@@ -23,29 +23,30 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.7.0</version>
+        <version>3.8.1</version>
         <configuration>
-          <source>1.8</source>
-          <target>1.8</target>
+          <source>11</source>
+          <target>11</target>
         </configuration>
       </plugin>
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-	<version>3.0.1</version>
+	<version>3.1.1</version>
         <configuration>
-        <linksource>true</linksource>
+          <linksource>true</linksource>
           <additionalOptions>
             <additionalOption>-html5</additionalOption>
           </additionalOptions>
+	  <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
         </configuration>
       </plugin>
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>3.1.0</version>
+        <version>3.2.1</version>
         <configuration>
           <transformers>
             <transformer
diff --git a/ws/Archetypes/mi-maven-archetype-quickstart/pom.xml b/ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
index eeb6e91382bce722b58c40a1b9fc6d55095b1ddb..084a6a02d3852f24d02d36bc9fe61f196dd2a656 100644
--- a/ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
+++ b/ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
@@ -5,7 +5,7 @@
 
   <groupId>de.hdm_stuttgart.mi</groupId>
   <artifactId>mi-maven-archetype-quickstart</artifactId>
-  <version>1.2.1</version>
+  <version>1.3</version>
 
   <packaging>maven-archetype</packaging>
 
diff --git a/ws/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml b/ws/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
index 29bc834a816b34431226c4fe98761835fd247648..5942a3015d19dcc11f188e3959dc6754f851b219 100644
--- a/ws/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
+++ b/ws/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
@@ -9,7 +9,7 @@
 
   <name>${artifactId}</name>
 
-  <url>https://freedocs.mi.hdm-stuttgart.de/sd1SectToolsOfTheTrade2.html</url>
+  <url>https://freedocs.mi.hdm-stuttgart.de/sd1_sect_mavenCli.html</url>
 
   <description>Basic Java project providing Junit 4 testing and log4j2 logging.</description>
 
@@ -28,7 +28,7 @@
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-core</artifactId>
-      <version>2.11.0</version>
+      <version>2.12.0</version>
     </dependency>
 
   </dependencies>
@@ -39,7 +39,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.7.0</version>
+        <version>3.8.1</version>
         <configuration>
           <source>11</source>
           <target>11</target>
@@ -49,7 +49,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-	<version>3.1.0</version>
+	<version>3.1.1</version>
         <configuration>
         <linksource>true</linksource>
           <additionalOptions>
@@ -62,7 +62,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>3.1.0</version>
+        <version>3.2.1</version>
         <configuration>
           <transformers>
             <transformer