beanpuree
beanpuree copied to clipboard
Middle layer between JavaBeans and shapeless
Updates [org.scoverage:sbt-scoverage](https://github.com/scoverage/sbt-scoverage) from 1.9.3 to 2.0.5. [GitHub Release Notes](https://github.com/scoverage/sbt-scoverage/releases/tag/v2.0.5) - [Version Diff](https://github.com/scoverage/sbt-scoverage/compare/v1.9.3...v2.0.5) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...
Updates * [org.scala-lang:scala-compiler](https://github.com/scala/scala) * [org.scala-lang:scala-library](https://github.com/scala/scala) * [org.scala-lang:scala-reflect](https://github.com/scala/scala) from 2.13.8 to 2.13.10. [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.13.10) - [Version Diff](https://github.com/scala/scala/compare/v2.13.8...v2.13.10) I'll automatically update this PR to resolve conflicts as long as you don't...
Updates * [org.scala-lang:scala-compiler](https://github.com/scala/scala) * [org.scala-lang:scala-library](https://github.com/scala/scala) * [org.scala-lang:scala-reflect](https://github.com/scala/scala) from 2.12.15 to 2.12.17. [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.12.17) - [Version Diff](https://github.com/scala/scala/compare/v2.12.15...v2.12.17) I'll automatically update this PR to resolve conflicts as long as you don't...
Hi, Intellij (and Maven) cannot, somehow, find the required implicits when I define a BeanConverter. I have imported me.limansky.beanpuree._. Any idea how I can debug this?
Support classes which has only setters. It's also required to fill existing instance. Something like: ``` val bf = BeanFiller[PersonJava.Builder] val personJava = bf.fill(PersonJava.newBuilder)(PersonScala("John Doe", 42)).build ```
Support Java classes which has only getters. It means one way converters from JavaBeans to products.