Skip to content

Commit

Permalink
Add empty javadoc.jar required for release
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Dec 14, 2023
1 parent 4e1d24c commit ab357bc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions grpc/io.grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,30 @@
<artifactId>grpc-core</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>empty-javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<classesDirectory>${project.build.directory}/javadoc</classesDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit ab357bc

Please sign in to comment.