[JAVA] Maven3 error memo

Maven3 error memo

maven-assembly-plugin:single failed: group id 'xxxxxx' is too big

When I tried to tar.gz the dependent jars, assembly: single failed. When I checked FAQ, it said:

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

Maven3 error memo
java, maven memo
maven
Flowing interface trial and error memo
docker memo
Eclipse error
Dockerfile memo
Iterator memo
corretto memo
Deployment error
Java memo
AWS memo
FindBugs-IDEA error
Maven learning
Dcokerfile memo
Ruby memo
[Maven] About Maven
Memo Stream
Maven [ERROR] Bootstrap classpath not set with -source 1.7
[Java] Classification memo of compilation error and run-time error