Skip to content

Commit

Permalink
Add generation of source jar
Browse files Browse the repository at this point in the history
  • Loading branch information
flanglet committed Oct 21, 2024
1 parent 7ddc3cb commit 67158e9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,37 @@
<build>
<defaultGoal>clean install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down

0 comments on commit 67158e9

Please sign in to comment.