I have the following project structure:
billing-project
|-- billing-shared
|    |
|    +-- pom.xml
|         
|-- billing-console-configurator
|    |
|    +-- pom.xml
|    
|-- billing-webapp
|    |
|    +-- pom.xml
|    
+-- pom.xml
pom.xml inside billing-console-configurator has the following dependency:
<dependencies>
    <dependency>
        <groupId>net.example.project</groupId>
        <artifactId>billing-shared</artifactId>
        <version>1.0</version>
    </dependency>
</dependencies>
And my billing-console-configurator projects uses classes from billing-shared, IDE and maven successfully compile billing-console-configurator. But when I look at billing-console-configurer-1.0.jar I can't find let's say SettingsHolder class which is located inside billing-shared module.
The question is how to make classes from the billing-shared to be packaged inside billing-console-configurator?