# Conflicts:
#	src/main/java/com/faf223/expensetrackerfaf/controllers/MainController.java
#	src/main/resources/application.properties
This commit is contained in:
2023-09-21 12:38:56 +03:00
7 changed files with 231 additions and 0 deletions

12
pom.xml
View File

@@ -36,6 +36,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>