Mark Schaake

Results 13 comments of Mark Schaake

See https://docs.scala-lang.org/overviews/core/value-classes.html

I will leave this issue open in case you or someone else wished to issue a pull request to resolve it. I personally do not have time (or a need)...

Sorry, but I don't know how I'd help you here without some code example. Could you provide a gist or something?

Also, which DateTime are you using? Is it org.joda.time.DateTime? Or something else? Sprest uses the ReactiveMongo library behind the scenes. For DateTime support, this means serialization to/from Long using the...

Oh I think I see what's going on. You are using the sprest.reactivemongo.typemappers.SprayJsonTypeMapper, which does not handle BSONDateTime (see https://github.com/markschaake/sprest/blob/master/sprest-reactivemongo/src/main/scala/sprest/reactivemongo/typemappers/TypeMappers.scala#L53). I originally did this on purpose as to allow the...

I'm trying to use the 13.4.0 version and am unfortunately still on Java 8 (openjdk). The necessary upgrade from 13.0.0 to 13.4.0 (to pick up the fix for the file...

> If you look at how Laminar uses SDT, then what can we get by making an AutoPlugin? Can it save our users (libraries like Laminar) some boilerplate under /project?...

One of the great things about AutoPlugins is how they are composable. I imagine a separate AutoPlugin per use case, each with configuration (setting and task keys) specific to their...

@raquo yes agreed on keeping the API surface small. It might be only two SBT settings and one task, where one of the settings allows the user to do all...

Thanks for the discussion on #104 . I closed it with the following takeaways: - It doesn't make sense to provide a plugin in SDT for code generation. It would...