Skip to content

Commit

Permalink
[#noissue] Apply standard maven.javadoc.skip properties
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed May 31, 2024
1 parent 59a436c commit 5140592
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
<test.jdk.home>${jdk.home}</test.jdk.home>
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.source.skip>true</maven.source.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>

<docker.repository.name>pinpointdocker</docker.repository.name>

Expand Down Expand Up @@ -1901,6 +1902,25 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.javadoc.version}</version>
<configuration>
<doclint>none</doclint>
<!-- <detectOfflineLinks>false</detectOfflineLinks>-->
<!-- <detectJavaApiLink>false</detectJavaApiLink>-->
<javadocExecutable>${jdk.home}/bin/javadoc</javadocExecutable>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -1966,24 +1986,6 @@
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
<!-- <detectOfflineLinks>false</detectOfflineLinks>-->
<!-- <detectJavaApiLink>false</detectJavaApiLink>-->
<javadocExecutable>${jdk.home}/bin/javadoc</javadocExecutable>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit 5140592

Please sign in to comment.