-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Moved config under core package
- Loading branch information
Julien Ruaux
committed
Jul 5, 2022
1 parent
7b55ccf
commit d871a0f
Showing
16 changed files
with
31 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...va/com/redis/sidecar/config/ByteSize.java → ...m/redis/sidecar/core/config/ByteSize.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.redis.sidecar.config; | ||
package com.redis.sidecar.core.config; | ||
|
||
public class ByteSize { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...java/com/redis/sidecar/config/Config.java → ...com/redis/sidecar/core/config/Config.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/com/redis/sidecar/config/Driver.java → ...com/redis/sidecar/core/config/Driver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.redis.sidecar.config; | ||
package com.redis.sidecar.core.config; | ||
|
||
public class Driver { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...n/java/com/redis/sidecar/config/Pool.java → ...a/com/redis/sidecar/core/config/Pool.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.redis.sidecar.config; | ||
package com.redis.sidecar.core.config; | ||
|
||
import java.time.Duration; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../java/com/redis/sidecar/config/Redis.java → .../com/redis/sidecar/core/config/Redis.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.redis.sidecar.config; | ||
package com.redis.sidecar.core.config; | ||
|
||
public class Redis { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...n/java/com/redis/sidecar/config/Rule.java → ...a/com/redis/sidecar/core/config/Rule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.redis.sidecar.config; | ||
package com.redis.sidecar.core.config; | ||
|
||
import java.time.Duration; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
demos/redis-sidecar-spring-demo/redis-sidecar-spring-demo.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
dependencies { | ||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' | ||
runtimeOnly project(':redis-sidecar-jdbc') | ||
runtimeOnly 'mysql:mysql-connector-java' | ||
runtimeOnly 'org.postgresql:postgresql' | ||
runtimeOnly 'com.oracle.database.jdbc:ojdbc8' | ||
runtimeOnly group: 'com.microsoft.sqlserver', name: 'mssql-jdbc', version: mssqlVersion | ||
runtimeOnly group: 'com.ibm.db2', name: 'jcc', version: db2Version | ||
developmentOnly 'org.springframework.boot:spring-boot-devtools' | ||
testImplementation 'org.springframework.boot:spring-boot-starter-test' | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
} |