Skip to content

Commit

Permalink
Add javadoc generation (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornandre authored Nov 15, 2023
1 parent 954a4ab commit d72a77b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,15 @@
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<release>21</release>
<doclint>all,-missing</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down Expand Up @@ -380,6 +389,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* This filter will obtain an {@link com.google.auth.oauth2.IdToken} and add it to the request. It uses Google's
* default Application Default Credentials as opposed to the {@link io.micronaut.gcp.http.client.GoogleAuthFilter} which
* default Application Default Credentials as opposed to the {@see io.micronaut.gcp.http.client.GoogleAuthFilter} which
* uses the Compute metadata server.
*/
@IdTokenFilterMatcher
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/no/ssb/dlp/pseudo/service/sid/SidMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/**
* Service Provider class that implements the {@link Mapper} pseudo function. This class will be invoked by the JDK's
* Service Loader mechanism for {@link no.ssb.dlp.pseudo.core.func.PseudoFuncNames.MAP_SID} pseudo functions.
* Service Loader mechanism for {@link no.ssb.dlp.pseudo.core.func.PseudoFuncNames#MAP_SID} pseudo functions.
*/
@AutoService(Mapper.class)
@Slf4j
Expand Down

0 comments on commit d72a77b

Please sign in to comment.