The pom created using the archetype doesn't create a fatJar. The archetype pom should have another execution section just after pullInDeps execution section to allow fatJar creation. The code is:
<execution>
<id>createFatJar</id>
<phase>prepare-package</phase>
<goals>
<goal>fatJar</goal>
</goals>
</execution>
The pom created using the archetype doesn't create a fatJar. The archetype pom should have another execution section just after pullInDeps execution section to allow fatJar creation. The code is: