You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by jl...@apache.org on 2020/11/02 19:42:59 UTC

[incubator-pinot] 01/02: Add GPG plugin for pinot-spark-connector

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

jlli pushed a commit to branch release-0.6.0-rc
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit b75bd24d6f4ab2883ad6aca13378c1f4b9bbf2fe
Author: Jack Li(Analytics Engineering) <jl...@jlli-mn1.linkedin.biz>
AuthorDate: Mon Nov 2 09:58:25 2020 -0800

    Add GPG plugin for pinot-spark-connector
---
 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..515e6c6 100644
--- a/pinot-connectors/pinot-spark-connector/pom.xml
+++ b/pinot-connectors/pinot-spark-connector/pom.xml
@@ -230,6 +230,27 @@
                     </execution>
                 </executions>
             </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>
 


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