Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] strange problem with org.eclipse.tycho:tycho-packaging-plugin

Dear all

I am facing a problem with org.eclipse.tycho:tycho-packaging-plugin.

I havemodify my eclipse project to create additional artifact on eclipse-plugin which are the Papyrus (uml) model that describes the eclipse plugin.

So I have added a specific profile to manage it [1]

 

When tycho-packaging-plugin is executed on the eclipse-feature plugin, I got an error [2] related to the size ofg the zip element [3]…

org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature failed: Could not determine installation size of file

 

Have you ever experiment this behavior?

Do you have any idea where to look?

 

Thanks

 

Francois

 

 

[1]: <!-- Profile for MDE publication -->

                               <profile>

                                               <id>mde</id>

                                               <activation>

                                                               <file>

                                                                              <exists>resources/doc</exists>

                                                               </file>

                                               </activation>

                                               <build>

                                                               <plugins>

                                                                              <plugin>

                                                                                              <groupId>org.apache.maven.plugins</groupId>

                                                                                              <artifactId>maven-assembly-plugin</artifactId>

                                                                              </plugin>

                                                                              <plugin>

                                                                                              <groupId>org.codehaus.mojo</groupId>

                                                                                              <artifactId>build-helper-maven-plugin</artifactId>

                                                                                              <executions>

                                                                                                              <execution>

                                                                                                                             <id>attach-artifacts</id>

                                                                                                                             <phase>package</phase>

                                                                                                                             <goals>

                                                                                                                                             <goal>attach-artifact</goal>

                                                                                                                             </goals>

                                                                                                                             <configuration>

                                                                                                                                             <artifacts>

                                                                                                                                                             <artifact>

                                                                                                                                                                             <file>target/${project.artifactId}-${project.version}-mde.zip</file>

                                                                                                                                                                            <type>zip</type>

                                                                                                                                                             </artifact>

                                                                                                                                                             <artifact>

                                                                                                                                                                             <file>resources/doc/${project.artifactId}.di</file>

                                                                                                                                                                            <type>di</type>

                                                                                                                                                             </artifact>

                                                                                                                                                             <artifact>

                                                                                                                                                                             <file>resources/doc/${project.artifactId}.notation</file>

                                                                                                                                                                            <type>notation</type>

                                                                                                                                                             </artifact>

                                                                                                                                                             <artifact>

                                                                                                                                                                             <file>resources/doc/${project.artifactId}.uml</file>

                                                                                                                                                                            <type>uml</type>

                                                                                                                                                             </artifact>

                                                                                                                                             </artifacts>

                                                                                                                             </configuration>

                                                                                                              </execution>

                                                                                              </executions>

                                                                              </plugin>

                                                               </plugins>

                                               </build>

                               </profile>

[2]: https://hudson.eclipse.org/papyrus/job/papyrus-sysml-gerrit-product/80/console

 

[3]: [INFO] o.h.m.e.h.MavenExecutionResultHandler - [1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature (default-package-feature) on project org.eclipse.papyrus.sysml14.feature: Execution default-package-feature of goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature failed: Could not determine installation size of file /jobs/genie.papyrus/papyrus-sysml-gerrit-product/workspace/core/org.eclipse.papyrus.sysml14/resources/doc/org.eclipse.papyrus.sysml14.uml

[DEBUG] Closing connection to remote

[ERROR] Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature (default-package-feature) on project org.eclipse.papyrus.sysml14.feature: Execution default-package-feature of goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature failed: Could not determine installation size of file /jobs/genie.papyrus/papyrus-sysml-gerrit-product/workspace/core/org.eclipse.papyrus.sysml14/resources/doc/org.eclipse.papyrus.sysml14.uml: error in opening zip file -> [Help 1]

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature (default-package-feature) on project org.eclipse.papyrus.sysml14.feature: Execution default-package-feature of goal org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-feature failed: Could not determine installation size of file /jobs/genie.papyrus/papyrus-sysml-gerrit-product/workspace/core/org.eclipse.papyrus.sysml14/resources/doc/org.eclipse.papyrus.sysml14.uml

 

Attachment: smime.p7s
Description: S/MIME cryptographic signature


Back to the top