asdcdow

Results 10 comments of asdcdow

Unfortunately, the offset pattern `+HH:mm:ss` isn't supported. We only get `+HH:MM:ss` which lets the timezone offset have 2 or 3 sections but not 1. I think to parse this in...

I ran in to the same problem when using PST as a time zone for dates before 1883 (see [here](https://dba.stackexchange.com/questions/127965/why-does-time-zone-have-such-a-crazy-offset-from-utc-on-year-0001-in-postgres) for more details). I was able to get past this...

I get the same problem with the rpm plugin. However, running `publish` beforehand doesn't seem to make it work for me.

Yes, I also have a private repo that requires credentials

Looking closer at this. I think I'm running in to 2 problems. - The problem described in the story - https://github.com/sbt/sbt/issues/2422 I think the second problem is why the workaround...

I'm not sure how you are supposed to access the authenticator. However, the way I was able to see what was happening was by putting a breakpoint in `IvyAuthenticator.install`. This...

Due to my other issue, I ended up using [sbt-aether-deploy](https://github.com/arktekk/sbt-aether-deploy). I was then able to get this working using roughly [this stack overflow answer](https://stackoverflow.com/questions/23147029/using-sbt-aether-deploy-with-sbt-native-packager/46063655#46063655)

For swagger v3, you can express `Either` in a straightforward manner using the `oneOf` descriminator

There is documentation for how to set up the plugin in the version specific folders of the project (e.g. https://github.com/swagger-api/swagger-play/tree/master/play-2.6/swagger-play2). This project just adds a HTTP call that returns a...

I assume you have a class like `MyComponents` in [this guide](https://www.playframework.com/documentation/2.6.x/ScalaCompileTimeDependencyInjection). You would put those lines inside that class.