Fix build

Sometimes build failed with the following logs:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.6:single (make-assembly) on project assembly-main:
        Failed to create assembly: Error creating assembly archive tomcat-zip: Problem creating zip: Execution exception: Truncated TAR archive -> [Help 1]
6.19.x
Anton Korneta 2017-08-14 16:30:46 +03:00
parent af92bc6521
commit 6bc4f7858f
3 changed files with 9 additions and 3 deletions

View File

@ -40,7 +40,7 @@
<dependency>
<groupId>org.eclipse.che</groupId>
<artifactId>bootstrapper</artifactId>
<type>tar.gz</type>
<type>zip</type>
<classifier>linux_amd64</classifier>
</dependency>
<dependency>

View File

@ -86,9 +86,8 @@
<useProjectArtifact>false</useProjectArtifact>
<unpack>true</unpack>
<outputDirectory>lib/linux_amd64</outputDirectory>
<outputFileNameMapping>bootstrapper-linux_amd64</outputFileNameMapping>
<includes>
<include>org.eclipse.che:bootstrapper:tar.gz:linux_amd64</include>
<include>org.eclipse.che:bootstrapper:zip:linux_amd64</include>
</includes>
</dependencySet>
<dependencySet>

View File

@ -118,6 +118,13 @@
<type>tar.gz</type>
<classifier>linux_amd64</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.che</groupId>
<artifactId>bootstrapper</artifactId>
<version>${che.version}</version>
<type>zip</type>
<classifier>linux_amd64</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.che</groupId>
<artifactId>exec-agent</artifactId>