Build failure on systems with large GID/UID (original) (raw)

Hello @lvca,

cc

When compiling ArcadeDB (with mvn clean install -DskipTests -X), got this error every time :

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:3.8.0:single (full) on project arcadedb-package: 
Execution full of goal org.apache.maven.plugins:maven-assembly-plugin:3.8.0:single failed: 
group id '..............' is too big ( > 2097151 ). Use STAR or POSIX extensions to overcome this limit

I resolved this by switching :

  1. In the package/pom.xml: replaced all occurrences of gnu by posix
  2. In the pom.xml, the<pluginManagement>, updating :
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>${maven-assembly-plugin.version}</version>
                        <configuration>
                            <tarLongFileMode>posix</tarLongFileMode>
                        </configuration>
                </plugin>

Could you integrate a / this fix ?

Have a nice day Luca!

V