Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 736 Bytes

readme.md

File metadata and controls

16 lines (12 loc) · 736 Bytes

Installation

Generate sources

Maven install to generate sources

  1. From IntelliJ > View > Tool Windows > Maven > Lifecycle > install
  2. From command line: mvn install

To Add generated sources in IntelliJ, right-click the following folders > Mark as > Generated Sources Root

  • clean-application/target/generated-sources/annotations for MapStruct (CustomerMapStructImpl)
  • clean-application/target/generated-sources/openapi/src/main/java for OpenAPI (LdapUserDto,...)

TODO: Extract infrastructure concerns from domain package

NotificationService is 'contaminated' with infrastructure concerns. Extract all that has to do with LDAP out of the domain package. Enable the @Disabled ArchitectureTest and make it pass.