@@ -66,30 +66,30 @@ object Distributor extends BuildExtra {
66
66
object dependencies {
67
67
object java {
68
68
private val setOracleCookie : URLConnection => Unit = { _.setRequestProperty(" Cookie" , " oraclelicense=accept-securebackup-cookie" ) }
69
- private val trimPathRegex = raw " ^\Qjre1.8.0_152 \E(?:\.jre)?/ " .r
69
+ private val trimPathRegex = raw " ^\Qjre1.8.0_162 \E(?:\.jre)?/ " .r
70
70
private val trimPath : String => String = { trimPathRegex.replaceFirstIn(_, " " ) }
71
71
72
- val win32 = Dependency (" jre.win32" , " 8u152 " , " http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0 /jre-8u152 -windows-i586.tar.gz" )
72
+ val win32 = Dependency (" jre.win32" , " 8u162 " , " http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1 /jre-8u162 -windows-i586.tar.gz" )
73
73
.withConnectionStep(setOracleCookie)
74
74
.extractAsTarGz { trimPath }
75
75
.to { _ / " distrib-dependencies" / " win32" / " jre" }
76
76
77
- val win64 = Dependency (" jre.win64" , " 8u152 " , " http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0 /jre-8u152 -windows-x64.tar.gz" )
77
+ val win64 = Dependency (" jre.win64" , " 8u162 " , " http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1 /jre-8u162 -windows-x64.tar.gz" )
78
78
.withConnectionStep(setOracleCookie)
79
79
.extractAsTarGz { trimPath }
80
80
.to { _ / " distrib-dependencies" / " win64" / " jre" }
81
81
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" )
82
+ val linuxX86 = Dependency (" jre.linux-x86" , " 8u162 " , " http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1 /jre-8u162 -linux-i586.tar.gz" )
83
83
.withConnectionStep(setOracleCookie)
84
84
.extractAsTarGz { trimPath }
85
85
.to { _ / " distrib-dependencies" / " linux-x86" / " jre" }
86
86
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" )
87
+ val linuxX64 = Dependency (" jre.linux-x64" , " 8u162 " , " http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1 /jre-8u162 -linux-x64.tar.gz" )
88
88
.withConnectionStep(setOracleCookie)
89
89
.extractAsTarGz { trimPath }
90
90
.to { _ / " distrib-dependencies" / " linux-x64" / " jre" }
91
91
92
- val osx = Dependency (" jre.osx" , " 8u152 " , " http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0 /jre-8u152 -macosx-x64.tar.gz" )
92
+ val osx = Dependency (" jre.osx" , " 8u162 " , " http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1 /jre-8u162 -macosx-x64.tar.gz" )
93
93
.withConnectionStep(setOracleCookie)
94
94
.extractAsTarGz { trimPath }
95
95
.to { _ / " distrib-dependencies" / " osx" / " jre" }
0 commit comments