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/10/26 23:20:09 UTC

[incubator-pinot] branch fix-asc-signiture-in-pinot-spark-connector-module created (now 966f36d)

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

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


      at 966f36d  Fix missing asc signiture file for target/pinot-spark-connector-0.6.0-javadoc.jar

This branch includes the following new commits:

     new 966f36d  Fix missing asc signiture file for target/pinot-spark-connector-0.6.0-javadoc.jar

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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


[incubator-pinot] 01/01: Fix missing asc signiture file for target/pinot-spark-connector-0.6.0-javadoc.jar

Posted by jl...@apache.org.
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) <jl...@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-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org