Skip to content

Commit 07d6cbc

Browse files
authored
chore: add cloud-rad doc generation (#641)
1 parent 166cce4 commit 07d6cbc

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

pom.xml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,5 +506,62 @@
506506
</plugins>
507507
</build>
508508
</profile>
509+
510+
<profile>
511+
<id>docFX</id>
512+
<activation>
513+
<property>
514+
<!-- Activate with -P docFX -->
515+
<name>docFX</name>
516+
</property>
517+
</activation>
518+
<reporting>
519+
<plugins>
520+
<plugin>
521+
<groupId>org.apache.maven.plugins</groupId>
522+
<artifactId>maven-javadoc-plugin</artifactId>
523+
<version>3.2.0</version>
524+
<reportSets>
525+
<reportSet>
526+
<id>docFX</id>
527+
<reports>
528+
<report>javadoc</report>
529+
<report>aggregate</report>
530+
<report>aggregate-jar</report>
531+
</reports>
532+
</reportSet>
533+
</reportSets>
534+
<configuration>
535+
<doclet>com.microsoft.doclet.DocFxDoclet</doclet>
536+
<useStandardDocletOptions>false</useStandardDocletOptions>
537+
<docletPath>${env.KOKORO_GFILE_DIR}/docfx-doclet-1.0-SNAPSHOT-jar-with-dependencies-172556.jar</docletPath>
538+
<additionalOptions>-outputpath ${project.build.directory}/docfx-yml</additionalOptions>
539+
<doclint>none</doclint>
540+
<show>protected</show>
541+
<nohelp>true</nohelp>
542+
<source>7</source>
543+
<groups>
544+
<group>
545+
<title>google-auth-library-credentials</title>
546+
<packages>com.google.auth*</packages>
547+
</group>
548+
<group>
549+
<title>google-auth-library-oauth2-http</title>
550+
<packages>com.google.auth.http*:com.google.auth.oauth2*</packages>
551+
</group>
552+
<group>
553+
<title>google-auth-library-appengine</title>
554+
<packages>com.google.auth.appengine*</packages>
555+
</group>
556+
</groups>
557+
<links>
558+
<link>http://download.oracle.com/javase/7/docs/api/</link>
559+
<link>http://cloud.google.com/appengine/docs/java/javadoc</link>
560+
</links>
561+
</configuration>
562+
</plugin>
563+
</plugins>
564+
</reporting>
565+
</profile>
509566
</profiles>
510567
</project>

0 commit comments

Comments
 (0)