Skip to content

Commit 494f91c

Browse files
author
Steve Salas
committed
Version number is 1.1.6; Depends on Java 8u162.
1 parent 3972557 commit 494f91c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

project/Build.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ object BuildDef extends Build with VersionSystem {
4545

4646
val baseProjectSettings = net.virtualvoid.sbt.graph.Plugin.graphSettings ++ baseCompilerSettings ++ Seq(
4747
organization := "com.avi",
48-
version := "1.1.5",
49-
releaseDate := "11/16/2017"
48+
version := "1.1.6",
49+
releaseDate := "1/17/2018"
5050
)
5151

5252
val webappProjectSettings = WebPlugin.webSettings ++ Seq (

project/Distributor.scala

+6-6
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_152\E(?:\.jre)?/".r
69+
private val trimPathRegex = raw"^\Qjre1.8.0_162\E(?:\.jre)?/".r
7070
private val trimPath: String => String = { trimPathRegex.replaceFirstIn(_, "") }
7171

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")
7373
.withConnectionStep(setOracleCookie)
7474
.extractAsTarGz { trimPath }
7575
.to { _ / "distrib-dependencies" / "win32" / "jre" }
7676

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")
7878
.withConnectionStep(setOracleCookie)
7979
.extractAsTarGz { trimPath }
8080
.to { _ / "distrib-dependencies" / "win64" / "jre" }
8181

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")
8383
.withConnectionStep(setOracleCookie)
8484
.extractAsTarGz { trimPath }
8585
.to { _ / "distrib-dependencies" / "linux-x86" / "jre" }
8686

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")
8888
.withConnectionStep(setOracleCookie)
8989
.extractAsTarGz { trimPath }
9090
.to { _ / "distrib-dependencies" / "linux-x64" / "jre" }
9191

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")
9393
.withConnectionStep(setOracleCookie)
9494
.extractAsTarGz { trimPath }
9595
.to { _ / "distrib-dependencies" / "osx" / "jre" }

0 commit comments

Comments
 (0)