mapstruct-kotlin
mapstruct-kotlin copied to clipboard
Using mapstruct with kotlin data classes.
MapStruct 1.4.0.Final was released recently, so I was hoping to take advantage of the full benefits of Kapt annotation incremental compiling for faster builds, but it didn't seem to be...
Hi, please add to the readme examples of configuration for maven
Hi Wie does the KotlinBuilder annotation have runtime retention? Wouldn't source be enough for an annotation processor?
When I add secondary constructor to data class, at builder class are two setter of the property. My class ```Kotlin @KotlinBuilder data class ProjectGroupModel( val parent: ProjectModel, val children: List...
ex) models ``` abstract class Audit( val createdBy: String = "", val createdAt: OffsetDateTime = OffsetDateTime.now(), val lastModifiedBy: String = "", val lastModifiedAt: OffsetDateTime = OffsetDateTime.now() ) : Serializable @KotlinBuilder...
I have an issue with Kotlin -> kapt -> mapstruct I have 2 data classes @Entity(name = "PLAN") @TypeDef(name = "pgsql_enum", typeClass = PostgreSQLEnumType::class) @KotlinBuilder data class Plan( @Id @GeneratedValue(generator...
ex data class in kotlin - ``` import com.github.pozo.KotlinBuilder @KotlinBuilder data class ContactInfo(val phoneNumbers: List = emptyList(), val emails: List = emptyList(), val addresses: List = emptyList() ) ``` The...