Skip to content

Commit e9fd0b9

Browse files
committed
update dependencies
1 parent e665156 commit e9fd0b9

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<java.version>1.8</java.version>
2222
<start-class>com.myapp.Application</start-class>
23-
<querydsl.version>4.1.3</querydsl.version>
23+
<querydsl.version>4.1.4</querydsl.version>
2424
<spock.version>1.0-groovy-2.4</spock.version>
2525
<okhttp3.version>3.4.1</okhttp3.version>
2626
</properties>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>io.jsonwebtoken</groupId>
6060
<artifactId>jjwt</artifactId>
61-
<version>0.6.0</version>
61+
<version>0.7.0</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>org.bgee.log4jdbc-log4j2</groupId>
@@ -92,13 +92,14 @@
9292
<dependency>
9393
<groupId>org.projectlombok</groupId>
9494
<artifactId>lombok</artifactId>
95-
<version>1.16.8</version>
95+
<version>1.16.10</version>
9696
<scope>provided</scope>
9797
</dependency>
9898
<dependency>
99-
<groupId>mysql</groupId>
100-
<artifactId>mysql-connector-java</artifactId>
99+
<groupId>org.mariadb.jdbc</groupId>
100+
<artifactId>mariadb-java-client</artifactId>
101101
<scope>runtime</scope>
102+
<version>1.5.2</version>
102103
</dependency>
103104
<dependency>
104105
<groupId>com.zaxxer</groupId>

src/main/resources/application.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ flyway:
3636
spring:
3737
profiles: dev2
3838
datasource:
39-
driverClassName: com.mysql.jdbc.Driver
39+
driverClassName: org.mariadb.jdbc.Driver
4040
jdbcUrl: jdbc:mysql://localhost:3306/springboot-angular2-tutorial?useSSL=false
4141
username: root
4242
password:
@@ -68,7 +68,7 @@ spring:
6868
redis:
6969
host: ${REDIS_ENDPOINT}
7070
datasource:
71-
driverClassName: com.mysql.jdbc.Driver
71+
driverClassName: org.mariadb.jdbc.Driver
7272
jdbcUrl: jdbc:mysql://${RDS_ENDPOINT}/ebdb?useSSL=false
7373
jpa:
7474
database: MYSQL
@@ -85,7 +85,7 @@ spring:
8585
redis:
8686
host: ${REDIS_ENDPOINT}
8787
datasource:
88-
driverClassName: com.mysql.jdbc.Driver
88+
driverClassName: org.mariadb.jdbc.Driver
8989
jdbcUrl: jdbc:mysql://${RDS_ENDPOINT}/ebdb?useSSL=false
9090
jpa:
9191
database: MYSQL

src/test/groovy/com/myapp/service/AssetManifestServiceTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class AssetManifestServiceTest extends BaseServiceTest {
1616
@Configuration
1717
static class TestConfig {
1818
@Bean
19-
public AssetManifestService assetManifestService(AppConfig appConfig) {
19+
AssetManifestService assetManifestService(AppConfig appConfig) {
2020
return new AssetManifestServiceImpl(appConfig);
2121
}
2222
}

0 commit comments

Comments
 (0)