You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sentry.apache.org by co...@apache.org on 2017/12/24 13:40:34 UTC

sentry git commit: Adding signing configuration

Repository: sentry
Updated Branches:
  refs/heads/branch-1.7.0 81d094dd0 -> e98bc77ca


Adding signing configuration


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

Branch: refs/heads/branch-1.7.0
Commit: e98bc77ca150c1e38a84384cec62a3c6a97837e2
Parents: 81d094d
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Sun Dec 24 13:40:22 2017 +0000
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Sun Dec 24 13:40:22 2017 +0000

----------------------------------------------------------------------
 pom.xml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sentry/blob/e98bc77c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bfe592a..4356fea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -888,6 +888,33 @@ limitations under the License.
         <buildtools.dir>${basedir}/../../build-tools</buildtools.dir>
       </properties>
     </profile>
+    <profile>
+      <id>sign-artifacts</id>
+      <activation>
+        <property>
+          <name>sign-artifacts</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <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>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
 
   </profiles>