diff --git a/Sd1/P/Archetypes/mi-maven-archetype-quickstart/Makefile b/Sd1/P/Archetypes/mi-maven-archetype-quickstart/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..1e6de2b9003fb3fdf451720e74f66cee51cd76f5
--- /dev/null
+++ b/Sd1/P/Archetypes/mi-maven-archetype-quickstart/Makefile
@@ -0,0 +1,9 @@
+
+
+install:
+	 rsync -av --delete -e ssh ~/.m2/repository/de/hdm-stuttgart/mi/mi-maven-archetype-quickstart root@maven.mi.hdm-stuttgart.de:/var/www/Archetypes/de/hdm-stuttgart/mi
+
+clean:
+	rm -rf ~/.m2/repository/de/hdm-stuttgart/mi/mi-maven-archetype-quickstart
+#end
+
diff --git a/Sd1/P/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml b/Sd1/P/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
index 581e51c42cc4f74267e2505e7b9183e01fbd4cf3..5aed3243dd7f92adb5a338b61b2d6d8094e67397 100644
--- a/Sd1/P/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
+++ b/Sd1/P/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
@@ -33,6 +33,7 @@
   
   <build>
     <plugins>
+
         <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
@@ -42,6 +43,14 @@
           <target>1.8</target>
         </configuration>
       </plugin>
+
+    <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.10.1</version>
+        <configuration/>
+      </plugin>
+      
     </plugins>
   </build>
 </project>