+build Add sort imports support. (#28780)
* Add scalafix plugin for jdk 9. * Add command alias sortImports. * Excludes some sources from SortImports. * Update SortImports to 0.4.0 * Sort imports with `sortImports` command.
This commit is contained in:
parent
ea7205eaf7
commit
0e4d41ad33
1534 changed files with 7454 additions and 6165 deletions
|
|
@ -4,11 +4,12 @@
|
|||
|
||||
package akka.persistence.journal.leveldb
|
||||
|
||||
import com.typesafe.config.ConfigFactory
|
||||
|
||||
import akka.actor._
|
||||
import akka.persistence._
|
||||
import akka.persistence.journal.PersistencePluginProxy
|
||||
import akka.testkit.{ AkkaSpec, TestProbe }
|
||||
import com.typesafe.config.ConfigFactory
|
||||
|
||||
object PersistencePluginProxySpec {
|
||||
lazy val config =
|
||||
|
|
|
|||
|
|
@ -4,10 +4,11 @@
|
|||
|
||||
package akka.persistence.journal.leveldb
|
||||
|
||||
import com.typesafe.config.ConfigFactory
|
||||
|
||||
import akka.actor._
|
||||
import akka.persistence._
|
||||
import akka.testkit.{ AkkaSpec, TestProbe }
|
||||
import com.typesafe.config.ConfigFactory
|
||||
|
||||
object SharedLeveldbJournalSpec {
|
||||
val config = ConfigFactory.parseString(s"""
|
||||
|
|
|
|||
|
|
@ -6,16 +6,19 @@ package akka.persistence.serialization
|
|||
|
||||
import java.io.NotSerializableException
|
||||
import java.util.UUID
|
||||
|
||||
import scala.concurrent.Await
|
||||
import scala.concurrent.duration.Duration
|
||||
|
||||
import com.typesafe.config._
|
||||
import org.apache.commons.codec.binary.Hex.{ decodeHex, encodeHex }
|
||||
|
||||
import akka.actor._
|
||||
import akka.persistence.AtLeastOnceDelivery.{ AtLeastOnceDeliverySnapshot, UnconfirmedDelivery }
|
||||
import akka.persistence._
|
||||
import akka.persistence.AtLeastOnceDelivery.{ AtLeastOnceDeliverySnapshot, UnconfirmedDelivery }
|
||||
import akka.serialization._
|
||||
import akka.testkit._
|
||||
import akka.util.ByteString.UTF_8
|
||||
import com.typesafe.config._
|
||||
import org.apache.commons.codec.binary.Hex.{ decodeHex, encodeHex }
|
||||
import scala.concurrent.Await
|
||||
import scala.concurrent.duration.Duration
|
||||
|
||||
object SerializerSpecConfigs {
|
||||
val customSerializers =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue