-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
Ran into this issue trying to build spark-streaming application.
Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single (make-assembly) on project spark-streaming-to-hbase-example-app: Execution make-assembly of goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single failed: group id '1385651864' is too big ( > 2097151 ). Use STAR or POSIX extensions to overcome this limit -> [Help 1]
Fix seems to adding tarLongFileMode in appropriate pom.xml file - app-package/pom.xml in this case.
```
<configuration>
<tarLongFileMode>posix</tarLongFileMode>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels