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 :
-
In the package/pom.xml: replaced all occurrences of gnu by posix
-
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
Hello @lvca,
cc
When compiling ArcadeDB (with
mvn clean install -DskipTests -X), got this error every time :I resolved this by switching :
In the
package/pom.xml: replaced all occurrences ofgnubyposixIn the
pom.xml, the<pluginManagement>, updating :Could you integrate a / this fix ?
Have a nice day Luca!
V