Skip to content

Commit

Permalink
h2 2.3.230 (was 2.2.224)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored and cchantep committed Aug 13, 2024
1 parent a4d4837 commit b23dade
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
java: 8
scala: 2.11.x, 2.12.x, 2.13.x
scala: 2.11.x, 2.12.x
cmd: sbt ++$MATRIX_SCALA docs/test

check-docs-11:
Expand All @@ -44,7 +44,8 @@ jobs:
needs:
- "check-code-style"
- "check-binary-compatibility"
- "check-docs"
- "check-docs-8"
- "check-docs-11"
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
java: 11, 8
Expand Down
26 changes: 18 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -230,14 +230,24 @@ lazy val `anorm-core` = project
ProblemFilters.exclude[IncompatibleMethTypeProblem]("anorm.ColumnNotFound.copy"),
ProblemFilters.exclude[IncompatibleResultTypeProblem]("anorm.ColumnNotFound.copy$default$2")
),
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.12.7",
"org.joda" % "joda-convert" % "2.2.3",
"org.scala-lang.modules" %% "scala-parser-combinators" % parserCombinatorsVer.value,
"org.scala-lang.modules" %% "scala-xml" % xmlVer.value % Test,
"com.h2database" % "h2" % "2.2.224" % Test,
acolyte
) ++ specs2Test,
libraryDependencies ++= {
val h2Ver = sys.props.get("java.version") match {
case Some(v) if v.startsWith("1.8") =>
"2.2.224"

case _ =>
"2.3.230"
}

Seq(
"joda-time" % "joda-time" % "2.12.7",
"org.joda" % "joda-convert" % "2.2.3",
"org.scala-lang.modules" %% "scala-parser-combinators" % parserCombinatorsVer.value,
"org.scala-lang.modules" %% "scala-xml" % xmlVer.value % Test,
"com.h2database" % "h2" % h2Ver % Test,
acolyte
) ++ specs2Test
},
) ++ armShading ++ licensing
)
.dependsOn(`anorm-tokenizer`)
Expand Down

0 comments on commit b23dade

Please sign in to comment.