Skip to content

Commit

Permalink
Merge pull request #4944 from PatrickGoRaft/filing-season-updates
Browse files Browse the repository at this point in the history
Filing season updates
  • Loading branch information
PatrickGoRaft authored Dec 6, 2024
2 parents f01b132 + 9da5f0f commit 227fc58
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ lazy val dockerSettings = Seq(
} else dockerBuildCommand.value
},
Docker / maintainer := "Hmda-Ops",
dockerBaseImage := "eclipse-temurin:21.0.2_13-jdk-alpine",
dockerBaseImage := "eclipse-temurin:23.0.1_11-jdk-alpine",
dockerRepository := Some("hmda"),
dockerCommands := dockerCommands.value.flatMap {
case cmd@Cmd("FROM",_) => List(cmd, Cmd("RUN", "apk update"),
Expand Down Expand Up @@ -152,7 +152,7 @@ lazy val `hmda-platform` = (project in file("hmda"))
.settings(hmdaBuildSettings: _*)
.settings(
Seq(
libraryDependencies += zeroAllocationHashing,
libraryDependencies ++= List(guava, zeroAllocationHashing),
Compile / mainClass := Some("hmda.HmdaPlatform"),
assembly / assemblyJarName := "hmda2.jar",
assembly / assemblyMergeStrategy := {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ private[engine] object TsEngine2024Q extends ValidationEngine[TransmittalSheet]

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

override def validityChecks(ctx: ValidationContext) = TsEngine2024.validityChecks(ctx).diff((Vector(V718.withContext(ctx)))) //++ Vector(V602)

override def validityChecks(ctx: ValidationContext) = TsEngine2024.validityChecks(ctx).appendedAll(Vector(V718.withContext(ctx)))filter(_ != V602)
}
// $COVERAGE-ON$
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,5 @@ private[engine] object TsEngine2025Q extends ValidationEngine[TransmittalSheet]

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

override def validityChecks(ctx: ValidationContext) = TsEngine2025.validityChecks(ctx).diff((Vector(V718.withContext(ctx)))) //++ Vector(V602)

}
override def validityChecks(ctx: ValidationContext) = TsEngine2024.validityChecks(ctx).appendedAll(Vector(V718.withContext(ctx)))filter(_ != V602)}
// $COVERAGE-ON$
2 changes: 1 addition & 1 deletion project/Version.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object Version {
val lettuce = "6.2.4.RELEASE"
val java8Compat = "1.0.2"
val scalaMock = "4.3.0"
val guava = "33.0.0-jre"
val guava = "33.3.1-jre"
val awsSesSdk = "1.12.484"
val zeroAllocation = "0.16"
val cormorant = "0.3.0"
Expand Down

0 comments on commit 227fc58

Please sign in to comment.