Skip to content

Commit 0ad5b7f

Browse files
committed
feat: add Jakarta Persistence API dependency to user tracking service
1 parent 7f7a8e0 commit 0ad5b7f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

user-tracking-service/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,24 @@
4141
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
4242
<version>3.0.3</version>
4343
</dependency>
44-
4544
<!-- H2 Database -->
4645
<dependency>
4746
<groupId>com.h2database</groupId>
4847
<artifactId>h2</artifactId>
4948
<scope>runtime</scope>
5049
</dependency>
51-
5250
<!-- Test Dependencies -->
5351
<dependency>
5452
<groupId>org.springframework.boot</groupId>
5553
<artifactId>spring-boot-starter-test</artifactId>
5654
<scope>test</scope>
5755
</dependency>
56+
<!-- Jakarta Persistence API -->
57+
<dependency>
58+
<groupId>jakarta.persistence</groupId>
59+
<artifactId>jakarta.persistence-api</artifactId>
60+
<version>3.0.0</version>
61+
</dependency>
5862
</dependencies>
5963

6064
<dependencyManagement>
@@ -111,4 +115,4 @@
111115
</plugin>
112116
</plugins>
113117
</build>
114-
</project>
118+
</project>

0 commit comments

Comments
 (0)