You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@s2graph.apache.org by st...@apache.org on 2016/08/30 05:14:05 UTC

incubator-s2graph git commit: [S2GRAPH-95]: Add sbt-pgp plugin on plugins.sbt

Repository: incubator-s2graph
Updated Branches:
  refs/heads/master 326e036e1 -> acf5a0aa3


[S2GRAPH-95]: Add sbt-pgp plugin on plugins.sbt

JIRA:
    [S2GRAPH-95] https://issues.apache.org/jira/browse/S2GRAPH-95

Pull Request:
    Closes #67

Authors:
    DO YUNG YOON: steamshon@apache.org


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

Branch: refs/heads/master
Commit: acf5a0aa39e9c95f312d0b571910cd4c73344f3a
Parents: 326e036
Author: DO YUNG YOON <st...@apache.org>
Authored: Tue Aug 30 14:17:16 2016 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Tue Aug 30 14:17:16 2016 +0900

----------------------------------------------------------------------
 CHANGES             | 2 ++
 build.sbt           | 4 +++-
 project/plugins.sbt | 3 +++
 3 files changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/acf5a0aa/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index b72174f..3539a4f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -158,6 +158,8 @@ Release 0.12.1 - unreleased
     
     S2GRAPH-97: Add KEYS file (Committed by DOYUNG YOON).
 
+    S2GRAPH-95: Add sbt-pgp plugin on plugins.sbt (Committed by DOYUNG YOON).
+
   TEST
     
     S2GRAPH-21: Change PostProcessBenchmarkSpec not to store and fetch test data from storage. (Committed by DOYUNG YOON).

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/acf5a0aa/build.sbt
----------------------------------------------------------------------
diff --git a/build.sbt b/build.sbt
index 07d9ddc..8aef7c4 100755
--- a/build.sbt
+++ b/build.sbt
@@ -81,4 +81,6 @@ releaseProcess := Seq[ReleaseStep](
   publishArtifacts,                       // : ReleaseStep, checks whether `publishTo` is properly set up
   setNextVersion,                         // : ReleaseStep
   commitNextVersion
-)
\ No newline at end of file
+)
+
+releasePublishArtifactsAction := PgpKeys.publishSigned.value
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/acf5a0aa/project/plugins.sbt
----------------------------------------------------------------------
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 926c8d2..340c88a 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -12,6 +12,9 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.3")
 
 addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.0")
 
+
+addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
+
 addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.3")
 
 resolvers += Resolver.typesafeRepo("releases")