Skip to content

Commit

Permalink
chore: cloud-rad doc generation (#645)
Browse files Browse the repository at this point in the history
Works with docfx profile from shared-config. Adding custom config to exclude package-info file creating issues on generation. Tested with trigger off this commit and generation is working as intended
  • Loading branch information
eaball35 committed Jun 1, 2021
1 parent 9bd881a commit 6f4c852
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Expand Up @@ -223,6 +223,29 @@
<module>samples</module>
</modules>
</profile>
</profiles>

<profile>
<id>docFX</id>
<activation>
<property>
<!-- Activate with -P docFX -->
<name>docFX</name>
</property>
</activation>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<sourceFileExcludes>
<exclude>com/google/cloud/firestore/v1/package-info.java</exclude>
</sourceFileExcludes>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>

0 comments on commit 6f4c852

Please sign in to comment.