aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynold Xin <rxin@apache.org>2014-01-27 16:27:01 -0800
committerReynold Xin <rxin@apache.org>2014-01-27 16:27:01 -0800
commit3d5c03e2305777b8a32f2e196e3b73ab221b3e79 (patch)
tree682baca0d7c5d389952331ee281b826bc04990c0
parentf16c21e22f706b268419fefce44e9905db3ee485 (diff)
parent6a5af7b7d8104eece8d251992d958dec1e358dec (diff)
downloadspark-3d5c03e2305777b8a32f2e196e3b73ab221b3e79.tar.gz
spark-3d5c03e2305777b8a32f2e196e3b73ab221b3e79.tar.bz2
spark-3d5c03e2305777b8a32f2e196e3b73ab221b3e79.zip
Merge pull request #516 from sarutak/master
modified SparkPluginBuild.scala to use https protocol for accessing gith... We cannot build Spark behind a proxy although we execute sbt with -Dhttp(s).proxyHost -Dhttp(s).proxyPort -Dhttp(s).proxyUser -Dhttp(s).proxyPassword options. It's because of using git protocol to clone junit_xml_listener.git. I could build after modifying SparkPluginBuild.scala. I reported this issue to JIRA. https://spark-project.atlassian.net/browse/SPARK-1046
-rw-r--r--project/project/SparkPluginBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/project/SparkPluginBuild.scala b/project/project/SparkPluginBuild.scala
index 6a66bd1d06..4853be2617 100644
--- a/project/project/SparkPluginBuild.scala
+++ b/project/project/SparkPluginBuild.scala
@@ -20,5 +20,5 @@ import sbt._
object SparkPluginDef extends Build {
lazy val root = Project("plugins", file(".")) dependsOn(junitXmlListener)
/* This is not published in a Maven repository, so we get it from GitHub directly */
- lazy val junitXmlListener = uri("git://github.com/ijuma/junit_xml_listener.git#fe434773255b451a38e8d889536ebc260f4225ce")
+ lazy val junitXmlListener = uri("https://github.com/ijuma/junit_xml_listener.git#fe434773255b451a38e8d889536ebc260f4225ce")
}