diff --git a/Doc/Sd1/appendix.xml b/Doc/Sd1/appendix.xml
index 2eb644c5b1477a57cfd2e3e287eff6a782b61fbd..8df0e733c6358bf1a455db164303dfa244c19f21 100644
--- a/Doc/Sd1/appendix.xml
+++ b/Doc/Sd1/appendix.xml
@@ -2351,7 +2351,7 @@ Total 3 (delta 0), reused 0 (delta 0)
       <screen>&gt;mvn --batch-mode -e archetype:generate -Dversion=0.9 \
 &gt; -DgroupId=de.hdm_stuttgart.mi.sd1 \
 &gt; -DartifactId=first -DarchetypeGroupId=de.hdm_stuttgart.mi \
-&gt; -DarchetypeArtifactId=mi-maven-archetype-quickstart -DarchetypeVersion=1.2
+&gt; -DarchetypeArtifactId=mi-maven-archetype-quickstart -DarchetypeVersion=1.2.1
 </screen>
 
       <screen>&gt;find first/ -type f
diff --git a/ws/Archetypes/mi-maven-archetype-quickstart/pom.xml b/ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
index 761eb6d78b6d7baf5aaa4a235b92abc8a1818388..eeb6e91382bce722b58c40a1b9fc6d55095b1ddb 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</version>
+  <version>1.2.1</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 8f7716279f45b04e621777de167f93ce7cfa3b37..29bc834a816b34431226c4fe98761835fd247648 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
@@ -41,20 +41,21 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>3.7.0</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.0</version>
         <configuration>
         <linksource>true</linksource>
           <additionalOptions>
             <additionalOption>-html5</additionalOption>
           </additionalOptions>
+          <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
         </configuration>
       </plugin>