Skip to content

Commit

Permalink
the snapshot version allows javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
hellokaton committed May 4, 2022
1 parent ef68c8c commit d8640c0
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@
</formats>
<instrumentation>
<excludes>
<exclude>com/blade/ioc/annotation/*.class</exclude>
<exclude>com/blade/mvc/annotation/*.class</exclude>
<exclude>com/blade/kit/*.class</exclude>
<exclude>com/blade/server/*.class</exclude>
<exclude>com/hellokaton/blade/ioc/annotation/*.class</exclude>
<exclude>com/hellokaton/blade/mvc/annotation/*.class</exclude>
<exclude>com/hellokaton/blade/kit/*.class</exclude>
<exclude>com/hellokaton/blade/server/*.class</exclude>
<exclude>netty_hello/*.class</exclude>
</excludes>
</instrumentation>
Expand Down Expand Up @@ -351,6 +351,27 @@
<skipTests>true</skipTests>
</configuration>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.2</version>
<configuration>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<!-- Gpg Signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit d8640c0

Please sign in to comment.