Skip to content
Snippets Groups Projects
Commit 6d328f54 authored by Patrick Wendell's avatar Patrick Wendell
Browse files

Changing tabs to spaces

parent 3ed172ea
No related branches found
No related tags found
No related merge requests found
...@@ -47,34 +47,34 @@ object SparkBuild extends Build { ...@@ -47,34 +47,34 @@ object SparkBuild extends Build {
pomExtra := ( pomExtra := (
<url>http://spark-project.org/</url> <url>http://spark-project.org/</url>
<licenses> <licenses>
<license> <license>
<name>BSD License</name> <name>BSD License</name>
<url>https://github.com/mesos/spark/blob/master/LICENSE</url> <url>https://github.com/mesos/spark/blob/master/LICENSE</url>
<distribution>repo</distribution> <distribution>repo</distribution>
</license> </license>
</licenses> </licenses>
<scm> <scm>
<connection>scm:git:git@github.com:mesos/spark.git</connection> <connection>scm:git:git@github.com:mesos/spark.git</connection>
<url>scm:git:git@github.com:mesos/spark.git</url> <url>scm:git:git@github.com:mesos/spark.git</url>
</scm> </scm>
<developers> <developers>
<developer> <developer>
<id>matei</id> <id>matei</id>
<name>Matei Zaharia</name> <name>Matei Zaharia</name>
<email>matei.zaharia@gmail.com</email> <email>matei.zaharia@gmail.com</email>
<url>http://www.cs.berkeley.edu/~matei</url> <url>http://www.cs.berkeley.edu/~matei</url>
<organization>U.C. Berkeley Computer Science</organization> <organization>U.C. Berkeley Computer Science</organization>
<organizationUrl>http://www.cs.berkeley.edu/</organizationUrl> <organizationUrl>http://www.cs.berkeley.edu/</organizationUrl>
</developer> </developer>
</developers> </developers>
), ),
publishTo <<= version { (v: String) => publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/" val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT")) if (v.trim.endsWith("SNAPSHOT"))
Some("sonatype-snapshots" at nexus + "content/repositories/snapshots") Some("sonatype-snapshots" at nexus + "content/repositories/snapshots")
else else
Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2") Some("sonatype-staging" at nexus + "service/local/staging/deploy/maven2")
}, },
credentials += Credentials(Path.userHome / ".sbt" / "sonatype.credentials"), credentials += Credentials(Path.userHome / ".sbt" / "sonatype.credentials"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment