From f9d96b67cc2d8f9a2e2a5a100530511a402591f6 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 18 Sep 2023 16:07:31 +0300 Subject: [PATCH] First commit --- pom.xml | 164 +++++++++--------- .../ExpenseTrackerFafApplication.java | 6 +- .../ExpenseTrackerFafApplicationTests.java | 6 +- 3 files changed, 85 insertions(+), 91 deletions(-) diff --git a/pom.xml b/pom.xml index 6d75a90..2460bcf 100644 --- a/pom.xml +++ b/pom.xml @@ -1,91 +1,85 @@ - 4.0.0 - - org.springframework.boot - spring-boot-starter-parent - 3.1.3 - - - com.faf223 - ExpenseTrackerFAF - 0.0.1-SNAPSHOT - ExpenseTrackerFAF - ExpenseTrackerFAF - - 17 - - - - org.springframework.boot - spring-boot-starter-data-jdbc - - - org.springframework.boot - spring-boot-starter-data-jpa - - - org.springframework.boot - spring-boot-starter-security - - - org.springframework.boot - spring-boot-starter-thymeleaf - - - org.springframework.boot - spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-websocket - - - org.springframework.session - spring-session-core - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity6 - + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.1.3 + + + com.faf223 + ExpenseTrackerFAF + 0.0.1-SNAPSHOT + ExpenseTrackerFAF + ExpenseTrackerFAF + + 17 + + + + + + + + + + + + org.springframework.boot + spring-boot-starter-security + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-websocket + + + org.springframework.session + spring-session-core + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 + - - org.springframework.boot - spring-boot-devtools - runtime - true - - - org.springframework.boot - spring-boot-docker-compose - runtime - true - - - com.microsoft.sqlserver - mssql-jdbc - runtime - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springframework.security - spring-security-test - test - - + + org.springframework.boot + spring-boot-devtools + runtime + true + + + com.microsoft.sqlserver + mssql-jdbc + runtime + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.security + spring-security-test + test + + - - - - org.springframework.boot - spring-boot-maven-plugin - - - + + + + org.springframework.boot + spring-boot-maven-plugin + + + diff --git a/src/main/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplication.java b/src/main/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplication.java index d08d7aa..b67a39c 100644 --- a/src/main/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplication.java +++ b/src/main/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplication.java @@ -6,8 +6,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class ExpenseTrackerFafApplication { - public static void main(String[] args) { - SpringApplication.run(ExpenseTrackerFafApplication.class, args); - } + public static void main(String[] args) { + SpringApplication.run(ExpenseTrackerFafApplication.class, args); + } } diff --git a/src/test/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplicationTests.java b/src/test/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplicationTests.java index 410fb37..d7e0426 100644 --- a/src/test/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplicationTests.java +++ b/src/test/java/com/faf223/expensetrackerfaf/ExpenseTrackerFafApplicationTests.java @@ -6,8 +6,8 @@ import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class ExpenseTrackerFafApplicationTests { - @Test - void contextLoads() { - } + @Test + void contextLoads() { + } }