From 1a540e6999c40d3f3f3132d98acf5deb391cf9bf Mon Sep 17 00:00:00 2001 From: sBubshait Date: Mon, 21 Jul 2025 14:56:10 +0300 Subject: [PATCH] chore: update maven compile plugin to match JDK version --- backend/application.yml | 21 +++++++++++++++++++++ backend/pom.xml | 14 +++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 backend/application.yml diff --git a/backend/application.yml b/backend/application.yml new file mode 100644 index 0000000..541a4fe --- /dev/null +++ b/backend/application.yml @@ -0,0 +1,21 @@ +spring: + datasource: + url: ${DB_URL} + username: ${DB_USER} + password: ${DB_PASSWORD} + driver-class-name: org.postgresql.Driver + + jpa: + hibernate: + ddl-auto: update + show-sql: true + properties: + hibernate: + dialect: org.hibernate.dialect.PostgreSQLDialect + format_sql: true + + application: + name: wesal + +server: + port: 8080 diff --git a/backend/pom.xml b/backend/pom.xml index ba34886..c085247 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -28,6 +28,8 @@ 21 + 21 + 21 @@ -96,7 +98,17 @@ org.springframework.boot spring-boot-maven-plugin + + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + 21 + 21 + 21 + + - + \ No newline at end of file