does the scripts support one module produce multiple artifacts?
here is my scenario
└── com
├── example
│ ├── api
│ └── impl
I want to produce two artifacts user-service-api.jar and user-service.jar ,
the user-service-api.jar include com.example.api package
and the user-service.jar include all packages.
is it possible to achieve this?