fix mysql connector
All checks were successful
Gitea Action Maven build / build (push) Successful in 1m33s
Gitea Action Maven build / deploy (push) Successful in 8s

This commit is contained in:
Eduard Kuksa 2025-02-22 19:31:57 +07:00
parent 2371258417
commit 65f23accf6
2 changed files with 10 additions and 11 deletions

View File

@ -6,7 +6,6 @@ spring:
username: ${DB_USER} username: ${DB_USER}
password: ${DB_PASSWORD} password: ${DB_PASSWORD}
url: ${DB_URL} url: ${DB_URL}
driver-class-name: com.mysql.cj.jdbc.Driver
# username: root # username: root
# password: hRMH94dJ # password: hRMH94dJ
# url: jdbc:mysql://localhost:3306/search_engine?useSSL=false&requireSSL=false&allowPublicKeyRetrieval=true # url: jdbc:mysql://localhost:3306/search_engine?useSSL=false&requireSSL=false&allowPublicKeyRetrieval=true
@ -25,9 +24,4 @@ indexing-settings:
- url: https://www.skillbox.ru - url: https://www.skillbox.ru
name: Skillbox name: Skillbox
- url: https://www.playback.ru - url: https://www.playback.ru
name: PlayBack.Ru name: PlayBack.Ru
logging:
level:
org.springframework: DEBUG
com.zaxxer.hikari: DEBUG

13
pom.xml
View File

@ -39,11 +39,16 @@
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<version>1.18.34</version> <version>1.18.34</version>
</dependency> </dependency>
<!-- <dependency>-->
<!-- <groupId>com.mysql</groupId>-->
<!-- <artifactId>mysql-connector-j</artifactId>-->
<!-- <version>8.4.0</version>-->
<!-- <scope>runtime</scope>-->
<!-- </dependency>-->
<dependency> <dependency>
<groupId>com.mysql</groupId> <groupId>mysql</groupId>
<artifactId>mysql-connector-j</artifactId> <artifactId>mysql-connector-java</artifactId>
<version>8.4.0</version> <version>8.0.33</version>
<scope>runtime</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.paulschwarz</groupId> <groupId>me.paulschwarz</groupId>