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 Jun 19, 2020
1 parent 3e4a367 commit bdfb171
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions pom.xml
Expand Up @@ -952,7 +952,22 @@
</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>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
Expand Down Expand Up @@ -1453,22 +1468,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>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${commons.assembly-plugin.version}</version>
Expand Down

0 comments on commit bdfb171

Please sign in to comment.