Skip to content

Commit

Permalink
SHIBUI-2273
Browse files Browse the repository at this point in the history
merging shibui-2262
  • Loading branch information
chasegawa committed Jun 14, 2022
1 parent 3d09f35 commit f87e1bc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ dependencies {
runtimeOnly 'org.glassfish.jaxb:jaxb-runtime:2.3.0'

compile "com.h2database:h2"
runtimeOnly 'org.postgresql:postgresql:42.3.4'
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client:3.0.4'
runtimeOnly 'mysql:mysql-connector-java:8.0.29'
runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc:9.4.1.jre11'
runtimeOnly "org.postgresql:postgresql:${project.'postgresVersion'}"
runtimeOnly "org.mariadb.jdbc:mariadb-java-client:${project.'mariadbVersion'}"
runtimeOnly "mysql:mysql-connector-java:${project.'mysqlVersion'}"
runtimeOnly "com.microsoft.sqlserver:mssql-jdbc:${project.'sqlserverVersion'}"

//Swagger
compile 'io.springfox:springfox-swagger2:2.9.2'
Expand Down
6 changes: 6 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ springbootVersion=2.5.12
springSecurityVersion=5.6.3
# springSecurityVersion=5.7.1

### DB Driver Versions ###
mariadbVersion=3.0.4
mysqlVersion=8.0.29
postgresVersion=42.3.4
sqlserverVersion=9.4.1.jre11

org.gradle.jvmargs=-Xmx1g -XX:-UseGCOverheadLimit

# set token in personal global
Expand Down

0 comments on commit f87e1bc

Please sign in to comment.