Skip to content

Commit

Permalink
move maven-javadoc-plugin to <build>
Browse files Browse the repository at this point in the history
  • Loading branch information
XenoAmess committed Jul 15, 2021
1 parent 3aab521 commit 4aa2c36
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions pom.xml
Expand Up @@ -190,7 +190,7 @@
<commons.site-plugin.version>3.9.1</commons.site-plugin.version>
<commons.source-plugin.version>3.2.1</commons.source-plugin.version>
<commons.spotbugs.plugin.version>4.2.3</commons.spotbugs.plugin.version>
<commons.spotbugs.impl.version>4.3.0</commons.spotbugs.impl.version>
<commons.spotbugs.impl.version>4.3.0</commons.spotbugs.impl.version>
<commons.surefire-report.version>2.22.2</commons.surefire-report.version>
<commons.surefire.version>2.22.2</commons.surefire.version>
<commons.wagon-ssh.version>3.4.3</commons.wagon-ssh.version>
Expand Down Expand Up @@ -1012,7 +1012,23 @@
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>create-javadoc-jar</id>
<goals>
<goal>javadoc</goal>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<configuration>
<source>${maven.compiler.source}</source>
<javadocExecutable>${commons.compiler.javadoc}</javadocExecutable>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
Expand Down Expand Up @@ -1518,23 +1534,6 @@
<arguments>-Prelease</arguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>create-javadoc-jar</id>
<goals>
<goal>javadoc</goal>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
<configuration>
<source>${maven.compiler.source}</source>
<javadocExecutable>${commons.compiler.javadoc}</javadocExecutable>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${commons.assembly-plugin.version}</version>
Expand Down

0 comments on commit 4aa2c36

Please sign in to comment.