Skip to content

Commit

Permalink
ci: Build Javadoc package
Browse files Browse the repository at this point in the history
This change to the CI pom.xml for PaperSpigot-API makes it also build a
Javadoc package jar (which is then hopefully deployed to the internal
maven repository).
  • Loading branch information
archer-321 committed Aug 17, 2021
1 parent 778ca6f commit 4056035
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api_ci_pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,18 @@
<shadedArtifactAttached>true</shadedArtifactAttached>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 4056035

Please sign in to comment.