Repository: incubator-s2graph Updated Branches: refs/heads/master cfa5f6fcd -> facf8d96d
[S2GRAPH-71]: Missing resolver in plugin settings Add resolver to plugin setting - project/plugins.sbt. JIRA: [S2GRAPH-71] https://issues.apache.org/jira/browse/S2GRAPH-71 Pull Request: Closes #47 Authors: Injun Song: [email protected] Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/facf8d96 Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/facf8d96 Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/facf8d96 Branch: refs/heads/master Commit: facf8d96df42400c770c750ab7539aa894ba09c9 Parents: cfa5f6f Author: DO YUNG YOON <[email protected]> Authored: Fri Jun 10 22:29:38 2016 +0900 Committer: DO YUNG YOON <[email protected]> Committed: Fri Jun 10 22:29:38 2016 +0900 ---------------------------------------------------------------------- CHANGES | 3 +++ project/plugins.sbt | 3 +++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/facf8d96/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 1d622b4..195caa9 100644 --- a/CHANGES +++ b/CHANGES @@ -102,6 +102,9 @@ Release 0.12.1 - unreleased S2GRAPH-61: Update README.md to have Apache mailing list. (Contributed by Hyunsung Jo<[email protected]>, committed by DOYUNG YOON) + + S2GRAPH-71: Missing resolver in plugin settings. + (Contributed by Injun Song<[email protected]>, committed by DOYUNG YOON) SUB TASKS http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/facf8d96/project/plugins.sbt ---------------------------------------------------------------------- diff --git a/project/plugins.sbt b/project/plugins.sbt index 7f33c0e..efce134 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -11,3 +11,6 @@ addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0") addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.3") addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.0") + +resolvers += Resolver.typesafeRepo("releases") +
