Skip to content

Commit 962ec41

Browse files
authored
Merge pull request #361 from agree0002/chore/#350
[chore/#350] Spring Boot 2.7.18 업그레이드 및 기타 의존성 버전 변경
2 parents f63a0ce + 052e251 commit 962ec41

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.6.1'
3-
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
2+
id 'org.springframework.boot' version '2.7.18'
3+
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
44
id 'java-library'
55
id 'com.diffplug.spotless' version '6.13.0'
66
}
@@ -76,14 +76,14 @@ subprojects {
7676
implementation (
7777
'org.springframework.boot:spring-boot-starter-web',
7878
'org.springframework.boot:spring-boot-starter-validation',
79-
'org.springdoc:springdoc-openapi-ui:1.6.0',
79+
'org.springdoc:springdoc-openapi-ui:1.7.0',
8080
'com.google.code.findbugs:jsr305:3.0.2',
81-
'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE',
81+
'io.awspring.cloud:spring-cloud-starter-aws:2.4.4',
8282

8383
// cloud config
84-
'org.springframework.cloud:spring-cloud-starter-config:3.1.0',
85-
'org.springframework.boot:spring-boot-starter-actuator:2.6.2',
86-
'org.springframework.cloud:spring-cloud-starter-bootstrap:3.1.0',
84+
'org.springframework.cloud:spring-cloud-starter-config:3.1.8',
85+
'org.springframework.boot:spring-boot-starter-actuator',
86+
'org.springframework.cloud:spring-cloud-starter-bootstrap:3.1.8',
8787

8888
// mail
8989
'org.springframework.boot:spring-boot-starter-mail',
@@ -120,7 +120,7 @@ project(':module-jpa') {
120120
'com.querydsl:querydsl-jpa', // query dsl
121121
'com.jcraft:jsch:0.1.55', // 로컬 개발용 db ssh tunneling, https://mavenlibs.com/maven/dependency/com.jcraft/jsch
122122
// 'org.mariadb.jdbc:mariadb-java-client',
123-
'mysql:mysql-connector-java',
123+
'com.mysql:mysql-connector-j',
124124
'com.h2database:h2'
125125
)
126126
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
spring:
2+
datasource:
3+
url: jdbc:h2:mem:testdb;MODE=MYSQL;NON_KEYWORDS=USER;DATABASE_TO_UPPER=false;DB_CLOSE_DELAY=-1;
4+
username: sa
5+
password:
6+
driver-class-name: org.h2.Driver
7+
jpa:
8+
show-sql: true
9+
hibernate:
10+
ddl-auto: create
11+
naming:
12+
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
13+
properties:
14+
hibernate:
15+
format_sql: true
16+
dialect: org.hibernate.dialect.H2Dialect

resource-server/src/test/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spring:
2121
console:
2222
enabled: true
2323
datasource:
24-
url: jdbc:h2:mem:testdb;MODE=MYSQL;DATABASE_TO_UPPER=false;DB_CLOSE_DELAY=-1;
24+
url: jdbc:h2:mem:testdb;MODE=MYSQL;NON_KEYWORDS=USER;DATABASE_TO_UPPER=false;DB_CLOSE_DELAY=-1;
2525
username: sa
2626
password:
2727
driver-class-name: org.h2.Driver

0 commit comments

Comments
 (0)