Skip to content

Commit 8d8f236

Browse files
authored
Merge pull request #797 from AVSystem/remove-redis
Remove deprecated Redis module and clean up build/docs references
2 parents 3e420b0 + c9c7126 commit 8d8f236

File tree

132 files changed

+1
-33463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+1
-33463
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
[`OptRef`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/OptRef.html) (implemented as value
3232
classes)
3333
* [Components](docs/Components.md) and Dependency Injection library
34-
* `commons-redis` (DEPRECATED) - [Scala driver for Redis](docs/RedisDriver.md)
3534
* `commons-macros` contains implementations of macros used in other modules and reusable macro utilities:
3635
* `MacroCommons` trait with several convenience functions for implementing macros
3736
* `TypeClassDerivation` - implements infrastructure for automatic type class derivation

docs/RedisDriver.md

Lines changed: 0 additions & 218 deletions
This file was deleted.

project/Commons.scala

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ object Commons extends ProjectGroup("commons") {
208208
mongo,
209209
hocon,
210210
spring,
211-
redis,
212211
)
213212
.settings(aggregateProjectSettings)
214213

@@ -304,21 +303,6 @@ object Commons extends ProjectGroup("commons") {
304303
sourceDirsSettings(_.getParentFile),
305304
)
306305

307-
lazy val redis = mkSubProject
308-
.dependsOn(core % CompileAndTest)
309-
.settings(
310-
jvmCommonSettings,
311-
libraryDependencies ++= Seq(
312-
"com.google.guava" % "guava" % guavaVersion,
313-
"org.apache.pekko" %% "pekko-stream" % pekkoVersion,
314-
"com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion,
315-
"io.monix" %% "monix" % monixVersion,
316-
),
317-
Test / parallelExecution := false,
318-
Compile / scalacOptions += "-Wconf:cat=deprecation:is", // only inform about deprecations due to scheduled removal
319-
Test / skip := true,
320-
)
321-
322306
lazy val hocon = mkSubProject
323307
.dependsOn(core % CompileAndTest)
324308
.settings(
@@ -350,7 +334,7 @@ object Commons extends ProjectGroup("commons") {
350334
)
351335

352336
lazy val benchmark = mkSubProject
353-
.dependsOn(redis, mongo)
337+
.dependsOn(mongo)
354338
.enablePlugins(JmhPlugin)
355339
.settings(
356340
jvmCommonSettings,

redis/preconfiguredCluster/9000/nodes.conf

Lines changed: 0 additions & 7 deletions
This file was deleted.

redis/preconfiguredCluster/9001/nodes.conf

Lines changed: 0 additions & 7 deletions
This file was deleted.

redis/preconfiguredCluster/9002/nodes.conf

Lines changed: 0 additions & 7 deletions
This file was deleted.

redis/preconfiguredCluster/9003/nodes.conf

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)