From a0074ff24782f6ddf6fc2dbc3de2ebf618dd488a Mon Sep 17 00:00:00 2001 From: Martin Goik <goik@hdm-stuttgart.de> Date: Thu, 6 Jun 2019 16:26:56 +0200 Subject: [PATCH] javadoc binary not found patch --- Doc/Sd1/appendix.xml | 2 +- ws/Archetypes/mi-maven-archetype-quickstart/pom.xml | 2 +- .../src/main/resources/archetype-resources/pom.xml | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Doc/Sd1/appendix.xml b/Doc/Sd1/appendix.xml index 2eb644c5b..8df0e733c 100644 --- a/Doc/Sd1/appendix.xml +++ b/Doc/Sd1/appendix.xml @@ -2351,7 +2351,7 @@ Total 3 (delta 0), reused 0 (delta 0) <screen>>mvn --batch-mode -e archetype:generate -Dversion=0.9 \ > -DgroupId=de.hdm_stuttgart.mi.sd1 \ > -DartifactId=first -DarchetypeGroupId=de.hdm_stuttgart.mi \ -> -DarchetypeArtifactId=mi-maven-archetype-quickstart -DarchetypeVersion=1.2 +> -DarchetypeArtifactId=mi-maven-archetype-quickstart -DarchetypeVersion=1.2.1 </screen> <screen>>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 761eb6d78..eeb6e9138 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 8f7716279..29bc834a8 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> -- GitLab