Skip to content

Commit

Permalink
Merge pull request #231 from twitter/add_tls_to_urls
Browse files Browse the repository at this point in the history
Use https instead of http in urls
  • Loading branch information
alanbato committed Jun 7, 2019
2 parents 027584c + 7f99303 commit 5a3826b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ object PerformanceBenchmark extends GzipGraphDownloader {
val separatorInt = flags("separator", defaultSeparatorEdges,
"Separator between source and destination ids in decimal value of the character")
val remoteFileFlag = flags("url",
"http://snap.stanford.edu/data/cit-HepTh.txt.gz",
"https://snap.stanford.edu/data/cit-HepTh.txt.gz",
"Specify a URL to download a graph file from")
val helpFlag = flags("h", false, "Print usage")
val globalPRFlag = flags("globalpr", false, "run global pagerank benchmark")
Expand Down
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object Cassovary extends Build {
"com.twitter" %% "finagle-stats" % finagleVersion,
"org.scala-lang" % "scala-reflect" % scalaVersion.value
),
resolvers += "twitter repo" at "http://maven.twttr.com",
resolvers += "twitter repo" at "https://maven.twttr.com",

scalacOptions ++= Seq("-encoding", "utf8"),
scalacOptions += "-deprecation",
Expand All @@ -49,7 +49,7 @@ object Cassovary extends Build {
pomIncludeRepository := { _ => false },
publishMavenStyle := true,
pomExtra := (
<url>http://twitter.com/cassovary</url>
<url>https://twitter.com/cassovary</url>
<licenses>
<license>
<name>Apache 2</name>
Expand Down
2 changes: 1 addition & 1 deletion sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sbtver=0.13.9
rawsbtjar=sbt-launch.jar
sbtdir=$HOME/.sbt/launchers/$sbtver
sbtjar=$sbtdir/$rawsbtjar
SBTURL=http://dl.bintray.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/$sbtver/$rawsbtjar
SBTURL=https://dl.bintray.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/$sbtver/$rawsbtjar
JARMD5=767d963ed266459aa8bf32184599786d

if [ ! -f $sbtjar ]; then
Expand Down

0 comments on commit 5a3826b

Please sign in to comment.