deps: Updated the imports in code of the single table inheritance pattern for SpringBoot 3.x (#2847)

* Updated the imports in code of the single table inheritance pattern for Spring Boot 3.x

#2825
Change javax library to jakarta

* add pom.xml
This commit is contained in:
Jun Kang
2024-03-26 20:23:06 +02:00
committed by GitHub
parent ca92c79c15
commit 6816c34218
6 changed files with 30 additions and 16 deletions
+15 -1
View File
@@ -10,12 +10,26 @@
</parent>
<artifactId>single-table-inheritance</artifactId>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<type>pom</type>
<version>3.2.3</version>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>