Dependdancies, Model, Class and POM.xml edits

This commit is contained in:
bryce
2024-10-27 22:49:47 +13:00
parent 7d46867320
commit 83eb995d69
11 changed files with 109 additions and 3 deletions

View File

@@ -19,21 +19,24 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<!-- Spring Data JPA -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<!-- Database Driver (e.g., H2, MySQL, PostgreSQL) -->
<dependency>
<groupId>com.h2database</groupId> <!-- Change this to your database -->
<artifactId>h2</artifactId>
<scope>runtime</scope>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.1.2</version> <!-- Check for the latest version if needed -->
</dependency>
<!-- Spring Boot Starter Test -->
<dependency>
<groupId>org.springframework.boot</groupId>