首页 > 其他分享 >Maven Use STAR or POSIX extensions to overcome this limit 报错问题解决

Maven Use STAR or POSIX extensions to overcome this limit 报错问题解决

时间:2023-02-03 14:36:01浏览次数:60  
标签:Use STAR assembly Maven 报错 POSIX extensions

 

问题: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>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>

标签:Use,STAR,assembly,Maven,报错,POSIX,extensions
From: https://www.cnblogs.com/cnndevelop/p/17089179.html

相关文章