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

jlli pushed a commit to branch fix-asc-signiture-in-pinot-spark-connector-module
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit 966f36d9f61920be8412becf2afd4480eb296d6b
Author: Jack Li(Analytics Engineering) <j...@jlli-mn1.linkedin.biz>
AuthorDate: Mon Oct 26 16:19:48 2020 -0700

    Fix missing asc signiture file for 
target/pinot-spark-connector-0.6.0-javadoc.jar
---
 pinot-connectors/pinot-spark-connector/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/pinot-connectors/pinot-spark-connector/pom.xml 
b/pinot-connectors/pinot-spark-connector/pom.xml
index 91d3c34..4a31b95 100644
--- a/pinot-connectors/pinot-spark-connector/pom.xml
+++ b/pinot-connectors/pinot-spark-connector/pom.xml
@@ -183,6 +183,27 @@
                             </javacArgs>
                         </configuration>
                     </plugin>
+                    <plugin>
+                        <!-- GPG signing -->
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <version>1.6</version>
+                        <executions>
+                            <execution>
+                                <id>sign-artifacts</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                                <configuration>
+                                    <excludes>
+                                        <exclude>**/*.asc</exclude>
+                                        <exclude>*.asc</exclude>
+                                    </excludes>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
                 </plugins>
             </build>
         </profile>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to