Skip to content

Commit 04e4c40

Browse files
authored
Merge pull request #8 from FlameyosSnowy/patch-4
Fix Long instead of Integer issue
2 parents 2c260f5 + 6dd04c8 commit 04e4c40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group 'github.Cobeine'
9-
version '1.6.4-SNAPSHOT'
9+
version '1.6.5-SNAPSHOT'
1010

1111
repositories {
1212
mavenCentral()
@@ -16,7 +16,7 @@ repositories {
1616
dependencies {
1717
compileOnly 'org.projectlombok:lombok:1.18.26'
1818
compileOnly 'org.jetbrains:annotations:23.0.0'
19-
compileOnly 'org.slf4j:slf4j-jdk14:1.6.0' //2.0.0 fails to bind with SLF4J somehow
19+
compileOnly 'org.slf4j:slf4j-jdk14:1.6.0' // 2.0.0 fails to bind with SLF4J somehow
2020
compileOnly 'com.zaxxer:HikariCP:4.0.3'
2121
annotationProcessor 'org.projectlombok:lombok:1.18.26'
2222

src/main/java/me/cobeine/sqlava/connection/auth/BasicMySQLCredentials.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public enum BasicMySQLCredentials implements CredentialsKey {
1515
TIMEZONE("serverTimezone", String.class,true),
1616
USERNAME("user", String.class,true),
1717
PASSWORD("password", String.class,true),
18-
MAX_LIFETIME("maximumLifetime", Integer.class,true),
18+
MAX_LIFETIME("maximumLifetime", Long.class,true),
1919
DATASOURCE_CLASS_NAME("dataSourceClassName", String.class,false),
2020
DRIVER("JdbcDriver", String.class,false),
2121
POOL_SIZE("poolSize", Integer.class,false),

0 commit comments

Comments
 (0)