Skip to content

Commit

Permalink
chore: update to use Java8 for javadoc generation (#1218)
Browse files Browse the repository at this point in the history
  • Loading branch information
alicejli committed Jun 7, 2023
1 parent ce985c6 commit 5fa7039
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<source>7</source>
<source>8</source>
<failOnError>false</failOnError>
</configuration>
<executions>
Expand Down Expand Up @@ -336,7 +336,7 @@
<configuration>
<failOnError>false</failOnError>
<doclint>none</doclint>
<source>7</source>
<source>8</source>
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
<doctitle>Google Auth Library for Java ${project.version}</doctitle>
<overview>${basedir}/overview.html</overview>
Expand Down Expand Up @@ -483,7 +483,7 @@
<projectname>${project.artifactId}</projectname>
<excludeclasses></excludeclasses>
<excludePackages></excludePackages>
<source>7</source>
<source>8</source>
<sourceFileExclude></sourceFileExclude>
</properties>
<build>
Expand Down

0 comments on commit 5fa7039

Please sign in to comment.