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/28 18:34:08 UTC

incubator-s2graph git commit: [S2GRAPH-91]: Remove custom repository on project's build.sbt

Repository: incubator-s2graph
Updated Branches:
  refs/heads/master 85aae7f7b -> 6841d3456


[S2GRAPH-91]: Remove custom repository on project's build.sbt

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

Pull Request:
    Closes #63

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/6841d345
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/6841d345
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/6841d345

Branch: refs/heads/master
Commit: 6841d3456d4d0bf0ac8f734b9a115002b11096b9
Parents: 85aae7f
Author: DO YUNG YOON <st...@apache.org>
Authored: Mon Aug 29 03:37:25 2016 +0900
Committer: DO YUNG YOON <st...@apache.org>
Committed: Mon Aug 29 03:37:25 2016 +0900

----------------------------------------------------------------------
 CHANGES                | 2 ++
 build.sbt              | 8 +-------
 project/Packager.scala | 2 +-
 3 files changed, 4 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/6841d345/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 5a2eb40..e68a0e5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -147,6 +147,8 @@ Release 0.12.1 - unreleased
 		(Contributed by Jong Wook Kim<jo...@nyu.edu>, committed by DOYUNG YOON)
     
     S2GRAPH-89: Change version number on project. (Committed by DOYUNG YOON).
+    
+    S2GRAPH-91: Remove custom repository on project's build.sbt (Committed by DOYUNG YOON).
 
   TEST
     

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/6841d345/build.sbt
----------------------------------------------------------------------
diff --git a/build.sbt b/build.sbt
index 73769d8..eb9b31d 100755
--- a/build.sbt
+++ b/build.sbt
@@ -29,13 +29,7 @@ lazy val commonSettings = Seq(
   testOptions in Test += Tests.Argument("-oDF"),
   parallelExecution in Test := false,
   resolvers ++= Seq(
-    Resolver.mavenLocal,
-    "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
-    "Cloudera" at "https://repository.cloudera.com/artifactory/cloudera-repos",
-    "Twitter Maven" at "http://maven.twttr.com",
-    "sonatype-snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
-    "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases",
-    "sonatype-releases" at "https://oss.sonatype.org/content/repositories/releases/"
+    Resolver.mavenLocal
   )
 )
 

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/6841d345/project/Packager.scala
----------------------------------------------------------------------
diff --git a/project/Packager.scala b/project/Packager.scala
index 5a9a121..2bf4f64 100644
--- a/project/Packager.scala
+++ b/project/Packager.scala
@@ -38,7 +38,7 @@ object Packager {
 
   val packagerTask = (baseDirectory, packagedJars, dependencyClasspath in Runtime, target, streams, version).map {
     (root, packaged, dependencies, target, streams, version) =>
-      val name = s"s2graph-$version-incubating-bin"
+      val name = s"apache-s2graph-$version-incubating-bin"
       val base = target / name
 
       IO.delete(base)