[1/2] incubator-s2graph git commit: [S2GRAPH-126] does not produce error even if ~/.m2/settings.xml does not exist

2016-11-10 Thread steamshon
Repository: incubator-s2graph
Updated Branches:
  refs/heads/master d37888ff2 -> 6610285ad


[S2GRAPH-126] does not produce error even if ~/.m2/settings.xml does not exist


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

Branch: refs/heads/master
Commit: f4374095f5f33c84202d19fefb95d2d02b242966
Parents: 1c2bd04
Author: Jong Wook Kim 
Authored: Wed Nov 9 16:22:40 2016 -0500
Committer: Jong Wook Kim 
Committed: Wed Nov 9 16:27:37 2016 -0500

--
 CHANGES | 3 +++
 project/Publisher.scala | 8 +---
 2 files changed, 8 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/f4374095/CHANGES
--
diff --git a/CHANGES b/CHANGES
index 8731236..cfeac6a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -117,6 +117,9 @@ Release 0.1.0 - unreleased
 
 S2GRAPH-120: Netty version is conflict with play 2.5.9 (Committed by 
DOYUNG YOON).
 
+S2GRAPH-126: SBT error when there is no ~/.m2/settings.xml
+ (Contributed by Jong Wook Kim, committed by 
DOYUNG YOON)
+
   TASKS
 
 S2GRAPH-2: Update document and quick start environment to have recent 
set-up command changes.

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/f4374095/project/Publisher.scala
--
diff --git a/project/Publisher.scala b/project/Publisher.scala
index 49364e4..7fb8d2b 100644
--- a/project/Publisher.scala
+++ b/project/Publisher.scala
@@ -1,5 +1,6 @@
 import sbt.Keys._
 import sbt._
+import scala.util.Try
 import scala.xml.XML
 
 object Publisher {
@@ -17,9 +18,10 @@ object Publisher {
   }
 },
 credentials ++= {
-  val xml = XML.loadFile(new File(System.getProperty("user.home")) / ".m2" 
/ "settings.xml")
-  for (server <- xml \\ "server" if (server \ "id").text == "apache") 
yield {
-Credentials("Sonatype Nexus Repository Manager", 
"repository.apache.org", (server \ "username").text, (server \ "password").text)
+  Try(XML.loadFile(new File(System.getProperty("user.home")) / ".m2" / 
"settings.xml")).toOption.toSeq.flatMap { xml =>
+for (server <- xml \\ "server" if (server \ "id").text == "apache") 
yield {
+  Credentials("Sonatype Nexus Repository Manager", 
"repository.apache.org", (server \ "username").text, (server \ "password").text)
+}
   }
 },
 pomIncludeRepository := { _ => false },



[2/2] incubator-s2graph git commit: [S2GRAPH-126]: fixes SBT error that occurs if ~/.m2/settings.xml does not exist.

2016-11-10 Thread steamshon
[S2GRAPH-126]: fixes SBT error that occurs if ~/.m2/settings.xml does not exist.

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

Pull Request:
  Closes #93

Authors
  Jong Wook Kim: jongw...@nyu.edu


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

Branch: refs/heads/master
Commit: 6610285ad11ef61845218c46483da642783c495a
Parents: d37888f f437409
Author: DO YUNG YOON 
Authored: Fri Nov 11 10:42:05 2016 +0900
Committer: DO YUNG YOON 
Committed: Fri Nov 11 10:43:17 2016 +0900

--
 CHANGES | 3 +++
 project/Publisher.scala | 8 +---
 2 files changed, 8 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/6610285a/CHANGES
--



[2/2] incubator-s2graph git commit: [S2GRAPH-127]: Refactor ExceptionHander Object into Class.

2016-11-10 Thread steamshon
[S2GRAPH-127]: Refactor ExceptionHander Object into Class.

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

Pull Request:
  Closes #95

Authors
  daewon: dae...@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/d37888ff
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/d37888ff
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/d37888ff

Branch: refs/heads/master
Commit: d37888ff2644d01e545ee56e758a5e72d5929118
Parents: b58ba20 6b5918b
Author: DO YUNG YOON 
Authored: Thu Nov 10 18:06:32 2016 +0900
Committer: DO YUNG YOON 
Committed: Thu Nov 10 18:07:49 2016 +0900

--
 CHANGES |   2 +
 .../apache/s2graph/core/ExceptionHandler.scala  | 161 ++-
 .../apache/s2graph/core/storage/Storage.scala   |  16 +-
 .../core/storage/hbase/AsynchbaseStorage.scala  |   1 +
 .../apache/s2graph/rest/play/Bootstrap.scala|  35 ++--
 .../s2graph/rest/play/actors/QueueActor.scala   |  10 +-
 .../controllers/ApplicationController.scala |   9 ++
 .../play/controllers/CounterController.scala|   3 +-
 .../rest/play/controllers/EdgeController.scala  |  21 +--
 .../play/controllers/PublishController.scala|   3 +-
 .../play/controllers/VertexController.scala |   7 +-
 11 files changed, 110 insertions(+), 158 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/d37888ff/CHANGES
--
diff --cc CHANGES
index e86b594,8731236..650ef5b
--- a/CHANGES
+++ b/CHANGES
@@@ -87,8 -87,6 +87,10 @@@ Release 0.1.0 - unrelease
  
  S2GRAPH-115: Release binary artifacts to Maven Central.
(Contributed by Jong Wook Kim, committed by 
DOYUNG YOON)
 +
 +S2GRAPH-124: Change JSONParser from Trait to Object (Committed by DOYUNG 
YOON).
++
++S2GRAPH-127: Refactor ExceptionHander Object into Class (Committed by 
DOYUNG YOON).
  
BUG FIXES