Skip to content

Commit

Permalink
chore: rediscala の更新
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Jan 26, 2025
1 parent 12de376 commit 061a13f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ val dependenciesToEmbed = Seq(
"org.scalikejdbc" %% "scalikejdbc" % "4.3.2",

// redis
"com.github.etaty" %% "rediscala" % "1.9.0",
"io.github.rediscala" %% "rediscala" % "1.17.0",

// effect system
"org.typelevel" %% "cats-core" % "2.13.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.unchama.bungeesemaphoreresponder

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import cats.effect.{ConcurrentEffect, ContextShift, IO, Timer}
import com.github.unchama.bungeesemaphoreresponder.bukkit.listeners.BungeeSemaphoreCooperator
import com.github.unchama.bungeesemaphoreresponder.domain.actions.BungeeSemaphoreSynchronization
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.unchama.bungeesemaphoreresponder.infrastructure.redis

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import com.github.unchama.bungeesemaphoreresponder.Configuration
import redis.RedisClient

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.unchama.bungeesemaphoreresponder.infrastructure.redis

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import cats.effect.{ContextShift, Effect, IO}
import com.github.unchama.bungeesemaphoreresponder.Configuration
import com.github.unchama.bungeesemaphoreresponder.domain.PlayerName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.unchama.seichiassist

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import cats.Parallel.Aux
import cats.effect
import cats.effect.concurrent.Ref
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package com.github.unchama.seichiassist.infrastructure.akka

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem

case class ConfiguredActorSystemProvider(configurationPath: String) {
// we need to explicitly pass the classloader because
// Akka cannot find the loader used to load this class
lazy val classLoader: ClassLoader = getClass.getClassLoader

def provide(): ActorSystem = {
akka.actor.ActorSystem(name = "default", classLoader = Some(classLoader))
org.apache.pekko.actor.ActorSystem(name = "default", classLoader = Some(classLoader))
}

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.unchama.seichiassist.infrastructure.redisbungee

import akka.actor.ActorSystem
import org.apache.pekko.actor.ActorSystem
import cats.effect.{ContextShift, Effect, IO}
import com.github.unchama.seichiassist.domain.actions.GetNetworkConnectionCount
import com.github.unchama.seichiassist.domain.configuration.RedisBungeeRedisConfiguration
Expand Down

0 comments on commit 061a13f

Please sign in to comment.