Skip to content

Commit

Permalink
chore: remove DocFX profile (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
alicejli committed Mar 21, 2024
1 parent 23c3cbe commit 18a19d5
Showing 1 changed file with 0 additions and 49 deletions.
49 changes: 0 additions & 49 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -427,54 +427,5 @@
</plugins>
</build>
</profile>

<profile>
<id>docFX</id>
<activation>
<property>
<!-- Activate with -P docFX -->
<name>docFX</name>
</property>
</activation>
<properties>
<!-- default config values -->
<docletName>java-docfx-doclet-1.9.0</docletName>
<outputpath>${project.build.directory}/docfx-yml</outputpath>
<projectname>${project.artifactId}</projectname>
<excludeclasses></excludeclasses>
<excludePackages></excludePackages>
<source>8</source>
<sourceFileExclude></sourceFileExclude>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<doclet>com.microsoft.doclet.DocFxDoclet</doclet>
<useStandardDocletOptions>false</useStandardDocletOptions>
<!-- custom config with -Dproperty=value -->
<docletPath>${env.KOKORO_GFILE_DIR}/${docletName}.jar</docletPath>
<additionalOptions>
-outputpath ${outputpath}
-projectname ${projectname}
-excludeclasses ${excludeclasses}:
-excludepackages ${excludePackages}:
</additionalOptions>
<doclint>none</doclint>
<show>protected</show>
<nohelp>true</nohelp>
<source>${source}</source>
<sourceFileExcludes>
<exclude>${sourceFileExclude}</exclude>
</sourceFileExcludes>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 18a19d5

Please sign in to comment.