I have a multi module project with the following setup: Module A has a Helper module as a dependency in its pom.xml
    <dependency>
        <groupId>org.example</groupId>
        <artifactId>Helper</artifactId>
        <version>1.0-SNAPSHOT</version>
        <scope>compile</scope>
    </dependency>
Helper module has a dependency as well:
    <dependency>
        <groupId>org.example</groupId>
        <artifactId>Another helper</artifactId>
        <version>1.0-SNAPSHOT</version>
        <scope>compile</scope>
    </dependency>
How can I generate an executable Jar of module A using Spring Boot maven plugin
 
     
    