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 114114 </excludes >
115115 </configuration >
116116 </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 >
117125 </plugins >
118126 </build >
119127
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ spring:
2626 auth : true
2727 starttls :
2828 enable : true
29-
29+ # sql:
30+ # init:
31+ # mode: always
3032verify :
3133 base :
3234 frontend : http://localhost:3000/
Original file line number Diff line number Diff line change @@ -16,12 +16,18 @@ server:
1616
1717spring :
1818 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
2225 hikari :
23- connectionTimeout : 10000
24- maximumPoolSize : 5
26+ maximumPoolSize : 20
27+ minimumIdle : 5
28+ idleTimeout : 30000
29+ maxLifetime : 1800000
30+ connectionTimeout : 30000
2531 driverClassName : org.postgresql.Driver
2632
2733 jpa :
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ spring:
2626 auth : true
2727 starttls :
2828 enable : true
29-
29+ # sql:
30+ # init:
31+ # mode: always
3032verify :
3133 base :
3234 frontend : http://localhost:3000/
Original file line number Diff line number Diff line change @@ -16,12 +16,18 @@ server:
1616
1717spring :
1818 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
2225 hikari :
23- connectionTimeout : 10000
24- maximumPoolSize : 5
26+ maximumPoolSize : 20
27+ minimumIdle : 5
28+ idleTimeout : 30000
29+ maxLifetime : 1800000
30+ connectionTimeout : 30000
2531 driverClassName : org.postgresql.Driver
2632
2733 jpa :
You can’t perform that action at this time.
0 commit comments