This is an automated email from the ASF dual-hosted git repository.

rgoers pushed a commit to branch flume-1.10.0
in repository https://gitbox.apache.org/repos/asf/flume.git


The following commit(s) were added to refs/heads/flume-1.10.0 by this push:
     new 5cf13399 Fix javadoc build issues
5cf13399 is described below

commit 5cf133991d664819161c72ace587803a8afd06cf
Author: Ralph Goers <rgo...@apache.org>
AuthorDate: Fri Jun 3 16:34:50 2022 -0700

    Fix javadoc build issues
---
 build-support/pom.xml | 18 ++++++++++++++++++
 pom.xml               |  2 ++
 2 files changed, 20 insertions(+)

diff --git a/build-support/pom.xml b/build-support/pom.xml
index 2fdd20e5..03af1412 100644
--- a/build-support/pom.xml
+++ b/build-support/pom.xml
@@ -28,6 +28,7 @@ limitations under the License.
     <properties>
         <maven.site.skip>true</maven.site.skip>
         <deploy.plugin.version>2.8.2</deploy.plugin.version>
+        <mvn-gpg-plugin.version>1.6</mvn-gpg-plugin.version>
     </properties>
     <build>
         <plugins>
@@ -39,6 +40,23 @@ limitations under the License.
                     <skip>true</skip>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-gpg-plugin</artifactId>
+                <version>${mvn-gpg-plugin.version}</version>
+                <executions>
+                    <execution>
+                        <id>default-cli</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>sign</goal>
+                        </goals>
+                        <configuration>
+                            <skip>true</skip>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 </project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index a393cc7c..09bd9a7e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -481,6 +481,7 @@ limitations under the License.
               <excludes>
                   <exclude>**/*.sha512</exclude>
               </excludes>
+            <keyname>${GPGSigningUserName}</keyname>
           </configuration>
         </plugin>
 
@@ -611,6 +612,7 @@ limitations under the License.
               <!-- include ONLY flume multi-module dependencies -->
               
<dependencySourceInclude>org.apache.flume:*</dependencySourceInclude>
             </dependencySourceIncludes>
+            <additionalparam>-Xdoclint:none</additionalparam>
           </configuration>
         </plugin>
 

Reply via email to