Ignasi Marimon-Clos
Ignasi Marimon-Clos
> You don't like my solution? Oh, I didn't know that `#` DSL. Love it.
We could even consider adding `jetty-alpn-agent-2.0.7.jar` (if license allows) like we include `gradlew`. 🤷♂️
related to #20
See for example https://github.com/akka/akka-grpc-quickstart-java.g8/blob/ca45326ccca94b9acb3e3113b754d5ad81e48cc8/src/main/g8/default.properties#L3
See https://github.com/lagom/sbt-lagom-descriptor-generator/issues/24#issuecomment-301036347
This is closely related to #25 since a user consuming several service may want to create their APIs in separate packages. Imagine an app consuming twitter, slack and G+ APIs...
This could be achieved by either including a `lagomGeneratorPackageName` parameter in the sbt plugin or via allowing users to implement a `Service => Service` function in their `sbt` settings and...
Deprecating `AkkaSSLConfig` in Akka 2.6 made this a bit more necessary since the deprecated code: ``` private val httpsConfig = AkkaSSLConfig()(system).mapSettings(s => s.withTrustManagerConfig(s.trustManagerConfig.withTrustStoreConfigs(Seq(httpsTrustStoreConfig)))) private val httpsContext = http.createClientHttpsContext(httpsConfig) ``` Now...
A possible solution would be reusing the `PemManagersProvider` introduced in https://github.com/akka/akka/pull/29152/files#diff-912cb92888b9d4cc775b16b16c0f8701a67c4329d3fb3e4c3bfb9e5df7ca7839 so building an `SSLContext` from `PEM` files becomes a lot simpler.
Hi @minutekey I'm a similar situation. Found this example on using Transformers (new?): https://github.com/cucumber/cucumber-jvm/commit/c4b2517bcde846f16e46dd5bca2ef361bdfa8cda and the commit where Transforms (old?) where removed: https://github.com/cucumber/cucumber-jvm/commit/9d768ee0ed7af2532f7ee05c7b439d48c6bccd19 Didn't have time for testing it though....