gitextract_tggwff63/ ├── LICENSE ├── README.md ├── activator.properties ├── build.sbt ├── project/ │ ├── ResolverSettings.scala │ ├── build.properties │ └── plugins.sbt ├── src/ │ ├── main/ │ │ ├── resources/ │ │ │ └── application.conf │ │ └── scala/ │ │ └── com/ │ │ └── boldradius/ │ │ ├── cqrs/ │ │ │ ├── AuctionCommandQueryProtocol.scala │ │ │ ├── BidProcessor.scala │ │ │ ├── BidView.scala │ │ │ ├── ClusterBoot.scala │ │ │ ├── ClusterNodeApp.scala │ │ │ ├── DomainModel.scala │ │ │ ├── HttpApp.scala │ │ │ ├── HttpAuctionServiceRoute.scala │ │ │ └── Passivation.scala │ │ └── util/ │ │ ├── Logging.scala │ │ └── MarshallingSupport.scala │ ├── multi-jvm/ │ │ └── scala/ │ │ └── com/ │ │ └── boldradius/ │ │ └── auction/ │ │ └── cqrs/ │ │ ├── AuctionServiceSpec.scala │ │ └── StMultiNodeSpec.scala │ └── test/ │ ├── resources/ │ │ └── testcreatetables.cql │ └── scala/ │ └── com/ │ └── boldradius/ │ └── dddd/ │ └── HttpAuctionServiceRouteSpec.scala └── tutorial/ └── index.html