Skip to content

Commit ce7deaf

Browse files
committed
Update bundler to use java 8u152
1 parent e96a119 commit ce7deaf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

project/Distributor.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,30 +66,30 @@ object Distributor extends BuildExtra {
6666
object dependencies {
6767
object java {
6868
private val setOracleCookie: URLConnection => Unit = { _.setRequestProperty("Cookie", "oraclelicense=accept-securebackup-cookie") }
69-
private val trimPathRegex = raw"^\Qjre1.8.0_121\E(?:\.jre)?/".r
69+
private val trimPathRegex = raw"^\Qjre1.8.0_152\E(?:\.jre)?/".r
7070
private val trimPath: String => String = { trimPathRegex.replaceFirstIn(_, "") }
7171

72-
val win32 = Dependency("jre.win32", "8u121", "http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jre-8u121-windows-i586.tar.gz")
72+
val win32 = Dependency("jre.win32", "8u152", "http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jre-8u152-windows-i586.tar.gz")
7373
.withConnectionStep(setOracleCookie)
7474
.extractAsTarGz { trimPath }
7575
.to { _ / "distrib-dependencies" / "win32" / "jre" }
7676

77-
val win64 = Dependency("jre.win64", "8u121", "http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jre-8u121-windows-x64.tar.gz")
77+
val win64 = Dependency("jre.win64", "8u152", "http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jre-8u152-windows-x64.tar.gz")
7878
.withConnectionStep(setOracleCookie)
7979
.extractAsTarGz { trimPath }
8080
.to { _ / "distrib-dependencies" / "win64" / "jre" }
8181

82-
val linuxX86 = Dependency("jre.linux-x86", "8u121", "http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jre-8u121-linux-i586.tar.gz")
82+
val linuxX86 = Dependency("jre.linux-x86", "8u152", "http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jre-8u152-linux-i586.tar.gz")
8383
.withConnectionStep(setOracleCookie)
8484
.extractAsTarGz { trimPath }
8585
.to { _ / "distrib-dependencies" / "linux-x86" / "jre" }
8686

87-
val linuxX64 = Dependency("jre.linux-x64", "8u121", "http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jre-8u121-linux-x64.tar.gz")
87+
val linuxX64 = Dependency("jre.linux-x64", "8u152", "http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jre-8u152-linux-x64.tar.gz")
8888
.withConnectionStep(setOracleCookie)
8989
.extractAsTarGz { trimPath }
9090
.to { _ / "distrib-dependencies" / "linux-x64" / "jre" }
9191

92-
val osx = Dependency("jre.osx", "8u121", "http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jre-8u121-macosx-x64.tar.gz")
92+
val osx = Dependency("jre.osx", "8u152", "http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jre-8u152-macosx-x64.tar.gz")
9393
.withConnectionStep(setOracleCookie)
9494
.extractAsTarGz { trimPath }
9595
.to { _ / "distrib-dependencies" / "osx" / "jre" }

0 commit comments

Comments
 (0)