Repository: incubator-gearpump
Updated Branches:
  refs/heads/master 83b36ef76 -> dac6953a2


Fixes GEARPUMP-18 Enable publishing gearpump artifacts to repository.…

…apache.org

Author: Kam Kasravi <[email protected]>

Closes #15 from kkasravi/issue_18.


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

Branch: refs/heads/master
Commit: dac6953a22004a801ab87d1792c24069237428b2
Parents: 83b36ef
Author: Kam Kasravi <[email protected]>
Authored: Tue May 10 23:32:24 2016 +0800
Committer: manuzhang <[email protected]>
Committed: Tue May 10 23:32:24 2016 +0800

----------------------------------------------------------------------
 project/Build.scala | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/dac6953a/project/Build.scala
----------------------------------------------------------------------
diff --git a/project/Build.scala b/project/Build.scala
index 9a3e980..7588478 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -89,7 +89,7 @@ object Build extends sbt.Build {
     Seq(
       scalaVersion := scalaVersionNumber,
       crossScalaVersions := crossScalaVersionNumbers,
-      organization := "com.github.intel-hadoop",
+      organization := "org.apache.gearpump",
       useGpg := false,
       pgpSecretRing := file("./secring.asc"),
       pgpPublicRing := file("./pubring.asc"),
@@ -99,14 +99,14 @@ object Build extends sbt.Build {
       pgpPassphrase := 
Option(System.getenv().get("PASSPHRASE")).map(_.toArray),
       credentials += Credentials(
         "Sonatype Nexus Repository Manager",
-        "oss.sonatype.org",
+        "repository.apache.org",
         System.getenv().get("SONATYPE_USERNAME"),
         System.getenv().get("SONATYPE_PASSWORD")),
 
       pomIncludeRepository := { _ => false },
 
       publishTo := {
-        val nexus = "https://oss.sonatype.org/";
+        val nexus = "https://repository.apache.org/";
         if (isSnapshot.value) {
           Some("snapshots" at nexus + "content/repositories/snapshots")
         } else {
@@ -117,7 +117,7 @@ object Build extends sbt.Build {
       publishArtifact in Test := true,
 
       pomExtra := {
-        <url>https://github.com/intel-hadoop/gearpump</url>
+        <url>https://github.com/apache/incubator-gearpump</url>
           <licenses>
             <license>
               <name>Apache 2</name>
@@ -125,15 +125,15 @@ object Build extends sbt.Build {
             </license>
           </licenses>
           <scm>
-            <connection>scm:git:github.com/intel-hadoop/gearpump</connection>
-            
<developerConnection>scm:git:[email protected]:intel-hadoop/gearpump</developerConnection>
-            <url>github.com/intel-hadoop/gearpump</url>
+            
<connection>scm:git://git.apache.org/incubator-gearpump.git</connection>
+            
<developerConnection>scm:git:[email protected]:apache/incubator-gearpump</developerConnection>
+            <url>github.com/apache/incubator-gearpump</url>
           </scm>
           <developers>
             <developer>
               <id>gearpump</id>
               <name>Gearpump Team</name>
-              <url>https://github.com/intel-hadoop/teams/gearpump</url>
+              
<url>http://gearpump.incubator.apache.org/community.html#who-we-are</url>
             </developer>
           </developers>
       }

Reply via email to