File tree Expand file tree Collapse file tree 7 files changed +36
-12
lines changed Expand file tree Collapse file tree 7 files changed +36
-12
lines changed Original file line number Diff line number Diff line change 114
114
</excludes >
115
115
</configuration >
116
116
</plugin >
117
+ <plugin >
118
+ <groupId >org.apache.maven.plugins</groupId >
119
+ <artifactId >maven-surefire-plugin</artifactId >
120
+ <version >2.22.2</version >
121
+ <configuration >
122
+ <skipTests >true</skipTests >
123
+ </configuration >
124
+ </plugin >
117
125
</plugins >
118
126
</build >
119
127
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ spring:
26
26
auth : true
27
27
starttls :
28
28
enable : true
29
-
29
+ # sql:
30
+ # init:
31
+ # mode: always
30
32
verify :
31
33
base :
32
34
frontend : http://localhost:3000/
Original file line number Diff line number Diff line change @@ -16,12 +16,18 @@ server:
16
16
17
17
spring :
18
18
datasource :
19
- url : ${POSTGRESQL_DB_URL}
20
- username : ${POSTGRESQL_DB_USER}
21
- password : ${POSTGRESQL_DB_PASSWORD}
19
+ # url: ${POSTGRESQL_DB_URL}
20
+ # username: ${POSTGRESQL_DB_USER}
21
+ # password: ${POSTGRESQL_DB_PASSWORD}
22
+ url : jdbc:postgresql://localhost:5432/acm
23
+ username : acmsecy
24
+ password : acmheads
22
25
hikari :
23
- connectionTimeout : 10000
24
- maximumPoolSize : 5
26
+ maximumPoolSize : 20
27
+ minimumIdle : 5
28
+ idleTimeout : 30000
29
+ maxLifetime : 1800000
30
+ connectionTimeout : 30000
25
31
driverClassName : org.postgresql.Driver
26
32
27
33
jpa :
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ spring:
26
26
auth : true
27
27
starttls :
28
28
enable : true
29
-
29
+ # sql:
30
+ # init:
31
+ # mode: always
30
32
verify :
31
33
base :
32
34
frontend : http://localhost:3000/
Original file line number Diff line number Diff line change @@ -16,12 +16,18 @@ server:
16
16
17
17
spring :
18
18
datasource :
19
- url : ${POSTGRESQL_DB_URL}
20
- username : ${POSTGRESQL_DB_USER}
21
- password : ${POSTGRESQL_DB_PASSWORD}
19
+ # url: ${POSTGRESQL_DB_URL}
20
+ # username: ${POSTGRESQL_DB_USER}
21
+ # password: ${POSTGRESQL_DB_PASSWORD}
22
+ url : jdbc:postgresql://localhost:5432/acm
23
+ username : acmsecy
24
+ password : acmheads
22
25
hikari :
23
- connectionTimeout : 10000
24
- maximumPoolSize : 5
26
+ maximumPoolSize : 20
27
+ minimumIdle : 5
28
+ idleTimeout : 30000
29
+ maxLifetime : 1800000
30
+ connectionTimeout : 30000
25
31
driverClassName : org.postgresql.Driver
26
32
27
33
jpa :
You can’t perform that action at this time.
0 commit comments