问题:Maven assembly-plugin 在打包的时候如果出现group id '707420648' is too big ( > 2097151 ). Use STAR or POSIX extensions to overcome this limit
解决:只需在assembly-plugin的<configuration>标签下加入<tarLongFileMode>posix</tarLongFileMode>即可
示例如下:
<groupId>org.apache.maven.plugins</groupId>标签:Use,STAR,assembly,Maven,报错,POSIX,extensions From: https://www.cnblogs.com/cnndevelop/p/17089179.html
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>