Only package selected sources when building a jar in Maven - grant-guo/Ideas GitHub Wiki
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals><goal>shade</goal></goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<includes>
<include>com/grant/guo/app/**</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>