Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# java 17
FROM openjdk:17-jdk-alpine

COPY ./build/libs/devhive03-0.0.8.0.jar .
COPY ./build/libs/devhive03-0.0.9.5.jar .

CMD ["java", "-jar", "devhive03-0.0.8.0.jar"]
CMD ["java", "-jar", "devhive03-0.0.9.5.jar"]
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'com'
version = '0.0.8.1'
version = '0.0.9.5'

java {
sourceCompatibility = '17'
Expand Down
12 changes: 4 additions & 8 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,12 @@ spring:
format_sql: true
highlight_sql: true
datasource:
# mysql
# driverClassName: com.mysql.cj.jdbc.Driver
driverClassName: org.mariadb.jdbc.Driver
url: jdbc:mariadb://127.0.0.1:3306/dev01
username: root
url: jdbc:mariadb://svc.sel3.cloudtype.app:31951/dev01?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8
username: user
password: 1234
# url: jdbc:mysql://localhost:3306/springTest?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&serverTimezone=UTC
#url: jdbc:mariadb://svc.sel3.cloudtype.app:31951/dev01?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8
#username: user
#password: 1234
# driverClassName: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://localhost:3306/springTest?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&serverTimezone=UTC
# username: root
# password: Cks4257@

Expand Down