Skip to content

Commit

Permalink
Create empty javadoc and source jars for maven central.
Browse files Browse the repository at this point in the history
Signed-off-by: Łukasz Dywicki <[email protected]>
  • Loading branch information
splatch committed Mar 5, 2024
1 parent b21f67d commit 93649cf
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,33 @@
</execution>
</executions>
</plugin>
<plugin>
<!-- create empty javadocs adn sources jars for maven central -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
</configuration>
</execution>
<execution>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>sources</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 93649cf

Please sign in to comment.