File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
test/groovy/com/myapp/service Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 20
20
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21
21
<java .version>1.8</java .version>
22
22
<start-class >com.myapp.Application</start-class >
23
- <querydsl .version>4.1.3 </querydsl .version>
23
+ <querydsl .version>4.1.4 </querydsl .version>
24
24
<spock .version>1.0-groovy-2.4</spock .version>
25
25
<okhttp3 .version>3.4.1</okhttp3 .version>
26
26
</properties >
58
58
<dependency >
59
59
<groupId >io.jsonwebtoken</groupId >
60
60
<artifactId >jjwt</artifactId >
61
- <version >0.6 .0</version >
61
+ <version >0.7 .0</version >
62
62
</dependency >
63
63
<dependency >
64
64
<groupId >org.bgee.log4jdbc-log4j2</groupId >
92
92
<dependency >
93
93
<groupId >org.projectlombok</groupId >
94
94
<artifactId >lombok</artifactId >
95
- <version >1.16.8 </version >
95
+ <version >1.16.10 </version >
96
96
<scope >provided</scope >
97
97
</dependency >
98
98
<dependency >
99
- <groupId >mysql </groupId >
100
- <artifactId >mysql-connector- java</artifactId >
99
+ <groupId >org.mariadb.jdbc </groupId >
100
+ <artifactId >mariadb- java-client </artifactId >
101
101
<scope >runtime</scope >
102
+ <version >1.5.2</version >
102
103
</dependency >
103
104
<dependency >
104
105
<groupId >com.zaxxer</groupId >
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ flyway:
36
36
spring :
37
37
profiles : dev2
38
38
datasource :
39
- driverClassName : com.mysql .jdbc.Driver
39
+ driverClassName : org.mariadb .jdbc.Driver
40
40
jdbcUrl : jdbc:mysql://localhost:3306/springboot-angular2-tutorial?useSSL=false
41
41
username : root
42
42
password :
@@ -68,7 +68,7 @@ spring:
68
68
redis :
69
69
host : ${REDIS_ENDPOINT}
70
70
datasource :
71
- driverClassName : com.mysql .jdbc.Driver
71
+ driverClassName : org.mariadb .jdbc.Driver
72
72
jdbcUrl : jdbc:mysql://${RDS_ENDPOINT}/ebdb?useSSL=false
73
73
jpa :
74
74
database : MYSQL
@@ -85,7 +85,7 @@ spring:
85
85
redis :
86
86
host : ${REDIS_ENDPOINT}
87
87
datasource :
88
- driverClassName : com.mysql .jdbc.Driver
88
+ driverClassName : org.mariadb .jdbc.Driver
89
89
jdbcUrl : jdbc:mysql://${RDS_ENDPOINT}/ebdb?useSSL=false
90
90
jpa :
91
91
database : MYSQL
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class AssetManifestServiceTest extends BaseServiceTest {
16
16
@Configuration
17
17
static class TestConfig {
18
18
@Bean
19
- public AssetManifestService assetManifestService (AppConfig appConfig ) {
19
+ AssetManifestService assetManifestService (AppConfig appConfig ) {
20
20
return new AssetManifestServiceImpl (appConfig);
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments