Skip to content

Commit 8b52ef0

Browse files
Lenny HalsethLenny Halseth
authored andcommitted
Update jre location
1 parent 133df0e commit 8b52ef0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

project/Distributor.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,20 @@ object Distributor extends BuildExtra {
6464
object dependencies {
6565
object java {
6666
private val setOracleCookie: URLConnection => Unit = { _.setRequestProperty("Cookie", "oraclelicense=accept-securebackup-cookie") }
67-
private val trimPathRegex = raw"^\Qjre1.8.0_181\E(?:\.jre)?/".r
67+
private val trimPathRegex = raw"^\Qjre1.8.0_191\E(?:\.jre)?/".r
6868
private val trimPath: String => String = { trimPathRegex.replaceFirstIn(_, "") }
6969

70-
val win64 = Dependency("jre.win64", "8u181", "http://download.oracle.com/otn-pub/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jre-8u181-windows-x64.tar.gz")
70+
val win64 = Dependency("jre.win64", "8u191", "http://download.oracle.com/otn-pub/java/jdk/8u191-b12/2787e4a523244c269598db4e85c51e0c/jre-8u191-windows-x64.tar.gz")
7171
.withConnectionStep(setOracleCookie)
7272
.extractAsTarGz { trimPath }
7373
.to { _ / "distrib-dependencies" / "win64" / "jre" }
7474

75-
val linuxX64 = Dependency("jre.linux-x64", "8u181", "http://download.oracle.com/otn-pub/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jre-8u181-linux-x64.tar.gz")
75+
val linuxX64 = Dependency("jre.linux-x64", "8u191", "http://download.oracle.com/otn-pub/java/jdk/8u191-b12/2787e4a523244c269598db4e85c51e0c/jre-8u191-linux-x64.tar.gz")
7676
.withConnectionStep(setOracleCookie)
7777
.extractAsTarGz { trimPath }
7878
.to { _ / "distrib-dependencies" / "linux-x64" / "jre" }
7979

80-
val osx = Dependency("jre.osx", "8u181", "http://download.oracle.com/otn-pub/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jre-8u181-macosx-x64.tar.gz")
80+
val osx = Dependency("jre.osx", "8u191", "http://download.oracle.com/otn-pub/java/jdk/8u191-b12/2787e4a523244c269598db4e85c51e0c/jre-8u191-macosx-x64.tar.gz")
8181
.withConnectionStep(setOracleCookie)
8282
.extractAsTarGz { trimPath }
8383
.to { _ / "distrib-dependencies" / "osx" / "jre" }

0 commit comments

Comments
 (0)