Add new entities

This commit is contained in:
mirrerror
2023-09-21 11:33:44 +03:00
parent ccea0d393c
commit 0918a51f7a
9 changed files with 180 additions and 9 deletions

12
pom.xml
View File

@@ -27,6 +27,18 @@
<scope>test</scope>
<version>3.1.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>3.1.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>12.4.1.jre11</version>
</dependency>
</dependencies>
<build>
<plugins>