Skip to content
This repository was archived by the owner on Mar 11, 2019. It is now read-only.

Commit e8bf2dc

Browse files
committed
fix(build): update the bluecove URLs
The old bluecove URLs are not any more available.
1 parent 544ff2c commit e8bf2dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project/PowerApiBuild.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ object PowerApiBuild extends Build {
5050
unmanagedClasspath in (Compile, runMain) += powerapi.base.getAbsoluteFile / "external-libs" / "sigar-bin",
5151
downloadBluecove := {
5252
val locationBluecove = powerapi.base.getAbsoluteFile / "external-libs" / "bluecove-2.1.0.jar"
53-
if (!locationBluecove.exists()) IO.download(url("https://bluecove.googlecode.com/files/bluecove-2.1.0.jar"), locationBluecove)
53+
if (!locationBluecove.exists()) IO.download(url("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/bluecove/bluecove-2.1.0.jar"), locationBluecove)
5454
locationBluecove
5555
},
5656
downloadBluecoveGpl := {
5757
val locationBluecoveGpl = powerapi.base.getAbsoluteFile / "external-libs" / "bluecove-gpl-2.1.0.jar"
58-
if (!locationBluecoveGpl.exists()) IO.download(url("https://bluecove.googlecode.com/files/bluecove-gpl-2.1.0.jar"), locationBluecoveGpl)
58+
if (!locationBluecoveGpl.exists()) IO.download(url("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/bluecove/bluecove-gpl-2.1.0.jar"), locationBluecoveGpl)
5959
locationBluecoveGpl
6060
},
6161
compile in Compile <<= (compile in Compile).dependsOn(downloadBluecove, downloadBluecoveGpl)

0 commit comments

Comments
 (0)