Skip to content

Commit

Permalink
[build] Skip javadoc task for pulsar-client-kafka-compact modules (#5836
Browse files Browse the repository at this point in the history
)

*Motivation*

pulsar-client-kafka-compact depends on pulsar-client implementation hence it pulls in
protobuf dependencies. This results in `class file for com.google.protobuf.GeneratedMessageV3 not found`
errors when generating javadoc for those modules.

*Modifications*

Skip javadoc tasks for these modules. Because:

- pulsar-client-kafka-compact is a kafka wrapper. Kafka already provides javadoc for this API.
- we didn't publish the javadoc for this module.
  • Loading branch information
sijie committed Jan 14, 2020
1 parent d1f122f commit 97f9431
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pulsar-client-kafka-compat/pom.xml
Expand Up @@ -47,4 +47,16 @@
<module>pulsar-client-kafka-tests_0_8</module>
<module>pulsar-client-kafka-tests_0_9</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 97f9431

Please sign in to comment.