Skip to content

Commit c0634e7

Browse files
committed
Upgrade HSQL DB and fix build to allow it
1 parent 52a20d0 commit c0634e7

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,3 @@ updates:
2525
schedule:
2626
interval: daily
2727
open-pull-requests-limit: 10
28-
ignore:
29-
- dependency-name: org.hsqldb:hsqldb
30-
versions:
31-
- ">= 2.6.0"

pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
</distributionManagement>
5353

5454
<properties>
55+
<java.test.version>11</java.test.version>
56+
<java.test.release.version>11</java.test.release.version>
5557
<junit.jupiter.version>5.9.0</junit.jupiter.version>
5658
<junit.platform.version>1.9.0</junit.platform.version>
5759
<spring.batch.version>4.3.6</spring.batch.version>
@@ -76,6 +78,18 @@
7678

7779
<build>
7880
<plugins>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-enforcer-plugin</artifactId>
84+
<configuration>
85+
<rules>
86+
<enforceBytecodeVersion>
87+
<maxJdkVersion>${java.version}</maxJdkVersion>
88+
<ignoredScopes>test</ignoredScopes>
89+
</enforceBytecodeVersion>
90+
</rules>
91+
</configuration>
92+
</plugin>
7993
<plugin>
8094
<groupId>org.jetbrains.kotlin</groupId>
8195
<artifactId>kotlin-maven-plugin</artifactId>
@@ -280,7 +294,7 @@
280294
<dependency>
281295
<groupId>org.hsqldb</groupId>
282296
<artifactId>hsqldb</artifactId>
283-
<version>2.5.2</version>
297+
<version>2.7.0</version>
284298
<scope>test</scope>
285299
</dependency>
286300
<dependency>

0 commit comments

Comments
 (0)