maven-assembly-plugin:single failed: group id 'xxxxxx' is too big
Assembly: single a échoué lors de la tentative de regroupement des fichiers JAR dépendants dans tar.gz. Quand j'ai vérifié FAQ, il a dit:
Tar complains about groupid value being too big GNU tar has restrictions on max value of UID/GUID in tar files. Consider using the more well defined POSIX tar format, which should support larger values. Use tarLongFileMode=posix in the assembly:single goal.
pom.xml
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
...
<tarLongFileMode>posix_warn</tarLongFileMode>
</configuration>
...
</plugin>
...
</plugins>
Recommended Posts