Hi All,
I want to merge this example with another code done with Play 2.6 for the web-gateway part, so I have to upgrade it with Lagom to 1.4.
The upgrade seems to be not so complicated but unfortunatly, I didn't success to solve 2 compilation errors when I upgrade Lagom in the web-gateway component:
Error:(22, 8) illegal inheritance;
self-type WebGateway does not conform to com.lightbend.lagom.scaladsl.client.LagomServiceClientComponents's selftype com.lightbend.lagom.scaladsl.client.LagomServiceClientComponents with com.lightbend.lagom.scaladsl.api.LagomConfigComponent
with LagomServiceClientComponents {
Error:(43, 25) Cannot find a value of type: [controllers.AssetsMetadata]
lazy val assets = wire[Assets]
The second error seems due to a new injection requirement for Play class controllers.Assets, but I don't know where and how to declare it.
The first one is more cryptical for me.
Thank you for your help,
Pascal.