Skip to content

Commit

Permalink
Add javadoc goal to C2-main
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed May 12, 2019
1 parent b640788 commit b61e909
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<url>https://github.com/CitizensDev/Citizens2/tree/master/</url>
</scm>
<build>
<defaultGoal>clean package install</defaultGoal>
<defaultGoal>clean package install javadoc:javadoc</defaultGoal>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>

<resources>
Expand Down Expand Up @@ -161,6 +161,18 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<author>false</author>
<doclint>none</doclint>
<links>
<link>https://hub.spigotmc.org/javadocs/spigot</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit b61e909

Please sign in to comment.