Skip to content

Commit 227fc58

Browse files
Merge pull request #4944 from PatrickGoRaft/filing-season-updates
Filing season updates
2 parents f01b132 + 9da5f0f commit 227fc58

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ lazy val dockerSettings = Seq(
6464
} else dockerBuildCommand.value
6565
},
6666
Docker / maintainer := "Hmda-Ops",
67-
dockerBaseImage := "eclipse-temurin:21.0.2_13-jdk-alpine",
67+
dockerBaseImage := "eclipse-temurin:23.0.1_11-jdk-alpine",
6868
dockerRepository := Some("hmda"),
6969
dockerCommands := dockerCommands.value.flatMap {
7070
case cmd@Cmd("FROM",_) => List(cmd, Cmd("RUN", "apk update"),
@@ -152,7 +152,7 @@ lazy val `hmda-platform` = (project in file("hmda"))
152152
.settings(hmdaBuildSettings: _*)
153153
.settings(
154154
Seq(
155-
libraryDependencies += zeroAllocationHashing,
155+
libraryDependencies ++= List(guava, zeroAllocationHashing),
156156
Compile / mainClass := Some("hmda.HmdaPlatform"),
157157
assembly / assemblyJarName := "hmda2.jar",
158158
assembly / assemblyMergeStrategy := {

hmda/src/main/scala/hmda/validation/engine/2024Qscala/TsEngine2024Q.scala

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ private[engine] object TsEngine2024Q extends ValidationEngine[TransmittalSheet]
1010

1111
override def syntacticalChecks(ctx: ValidationContext) = TsEngine2024.syntacticalChecks(ctx)
1212

13-
override def validityChecks(ctx: ValidationContext) = TsEngine2024.validityChecks(ctx).diff((Vector(V718.withContext(ctx)))) //++ Vector(V602)
14-
13+
override def validityChecks(ctx: ValidationContext) = TsEngine2024.validityChecks(ctx).appendedAll(Vector(V718.withContext(ctx)))filter(_ != V602)
1514
}
1615
// $COVERAGE-ON$

hmda/src/main/scala/hmda/validation/engine/2025Qscala/TsEngine2025Q.scala

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,5 @@ private[engine] object TsEngine2025Q extends ValidationEngine[TransmittalSheet]
1010

1111
override def syntacticalChecks(ctx: ValidationContext) = TsEngine2025.syntacticalChecks(ctx)
1212

13-
override def validityChecks(ctx: ValidationContext) = TsEngine2025.validityChecks(ctx).diff((Vector(V718.withContext(ctx)))) //++ Vector(V602)
14-
15-
}
13+
override def validityChecks(ctx: ValidationContext) = TsEngine2024.validityChecks(ctx).appendedAll(Vector(V718.withContext(ctx)))filter(_ != V602)}
1614
// $COVERAGE-ON$

project/Version.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object Version {
3333
val lettuce = "6.2.4.RELEASE"
3434
val java8Compat = "1.0.2"
3535
val scalaMock = "4.3.0"
36-
val guava = "33.0.0-jre"
36+
val guava = "33.3.1-jre"
3737
val awsSesSdk = "1.12.484"
3838
val zeroAllocation = "0.16"
3939
val cormorant = "0.3.0"

0 commit comments

Comments
 (0)