Fix h2 version mismatch (#16845)

This commit is contained in:
Shrikant Sharat Kandula 2022-09-19 08:04:30 +05:30 committed by GitHub
parent 4df3536986
commit 98776e9e94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -118,7 +118,7 @@
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<version>2.1.210</version> <version>${h2.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
@ -241,4 +241,4 @@
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -25,6 +25,7 @@
<!-- By default skip the dockerization step. Only activate if necessary --> <!-- By default skip the dockerization step. Only activate if necessary -->
<skipDockerBuild>true</skipDockerBuild> <skipDockerBuild>true</skipDockerBuild>
<log4j2.version>2.17.1</log4j2.version> <log4j2.version>2.17.1</log4j2.version>
<h2.version>2.1.210</h2.version>
</properties> </properties>
<build> <build>