This application comes with two package level annotations:
SharedKernelused to mark packages containing classes shared between multiple contexts;BusinessContextused to mark packages containing classes to answer a specific business need. Classes in this package can't be used in another package.
To mark a package, you have to add a package-info.java file at the package root with:
@{{ basePackage }}.SharedKernel
package com.abiy.ecomp;or:
@{{ basePackage }}.BusinessContext
package com.abiy.ecomp;