You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2017/09/05 17:51:07 UTC

kafka git commit: MINOR: add mvn-pgp-plugin to sign streams quickstart jars

Repository: kafka
Updated Branches:
  refs/heads/trunk caddae19e -> d78eb03fa


MINOR: add mvn-pgp-plugin to sign streams quickstart jars

Author: Damian Guy <da...@gmail.com>

Reviewers: Guozhang Wang <wa...@gmail.com>

Closes #3793 from dguy/sign-mvn-jars


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/d78eb03f
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/d78eb03f
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/d78eb03f

Branch: refs/heads/trunk
Commit: d78eb03fad33b6060f246ae31c9276038e8555ec
Parents: caddae1
Author: Damian Guy <da...@gmail.com>
Authored: Tue Sep 5 10:51:04 2017 -0700
Committer: Guozhang Wang <wa...@gmail.com>
Committed: Tue Sep 5 10:51:04 2017 -0700

----------------------------------------------------------------------
 streams/quickstart/pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/d78eb03f/streams/quickstart/pom.xml
----------------------------------------------------------------------
diff --git a/streams/quickstart/pom.xml b/streams/quickstart/pom.xml
index ef1ee0d..cc40dac 100644
--- a/streams/quickstart/pom.xml
+++ b/streams/quickstart/pom.xml
@@ -90,6 +90,24 @@
                     </delimiters>
                 </configuration>
             </plugin>
+            <plugin>
+                <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>
+                        <keyname>${gpg.keyname}</keyname>
+                        <passphraseServerId>${gpg.keyname}</passphraseServerId>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
         <resources>
             <resource>