Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] The installable unit xyz has not been found.

Hey there,

we are discovering the same problem ("The installable unit xyz has not been found.") after changing from tycho 0.12 to version 0.13. Is this already a known bug in tycho 0.13 or should we try to provide a sample project?

With -e -X  switch we are getting the following output:

[INFO] --- tycho-p2-repository-plugin:0.13.0:assemble-repository (default-assemble-repository) @ com.flowfact.client.repository ---
[WARNING] Mirror tool: "Problems resolving provisioning plan.": ["Unable to satisfy dependency from application 0.0.0 to tooling.source.default [1.0.0].", "Unable to satisfy depend
ency from application 0.0.0 to toolingapplication.configuration [0.0.0].", "Unable to satisfy dependency from application 0.0.0 to tooling.osgi.bundle.default [1.0.0].", "Unable to
 satisfy dependency from application 0.0.0 to tooling.org.eclipse.update.feature.default [1.0.0].", "Unable to satisfy dependency from application 0.0.0 to config.a.jre.javase [1.6
.0]."]

Do you have any idea how to solve this?

Kind regards,

Sonja Subicin


-------- Original-Nachricht --------
> Datum: Tue, 27 Sep 2011 12:37:00 +0200
> Von: "Robert Gründler" <r.gruendler@xxxxxxxxx>
> An: tycho-user@xxxxxxxxxxx
> Betreff: [tycho-user] The installable unit xyz has not been found.

> Hi,
> 
> i'm trying to build an eclipse product containing my plugin. When the
> project which contains the product
> definition is built, i'm getting "The installable unit
> com.dubture.symfony.rcp.product has not been found."
> 
> Are there some naming conventions i have to follow, so tycho can find the
> IU?
> 
> Heres the pom and the product from the failing project:
> 
> ############ PRODUCT ###############
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <?pde version="3.5"?>
> 
> <product name="symfony" uid="com.dubture.symfony.rcp.product"
> id="com.dubture.symfony.com_dubture_symfony_product"
> application="org.eclipse.ui.ide.workbench" version="1.0.0"
> useFeatures="true" includeLaunchers="true">
> 
>    <configIni use="default">
>    </configIni>
> 
>    <launcherArgs>
>       <programArgs>-debug</programArgs>
>       <vmArgs>-d32</vmArgs>
>       <vmArgsMac>-XstartOnFirstThread
> -Dorg.eclipse.swt.internal.carbon.smallFonts</vmArgsMac>
>    </launcherArgs>
> 
>    <windowImages/>
> 
>    <launcher name="eclipse">
>       <solaris/>
>       <win useIco="false">
>          <bmp/>
>       </win>
>    </launcher>
> 
>    <vm>
>    </vm>
> 
>    <plugins>
>       <plugin id="com.ibm.icu"/>
>       <plugin id="org.eclipse.core.commands"/>
>       <plugin id="org.eclipse.core.contenttype"/>
>       <plugin id="org.eclipse.core.databinding"/>
>       <plugin id="org.eclipse.core.databinding.observable"/>
>       <plugin id="org.eclipse.core.databinding.property"/>
>       <plugin id="org.eclipse.core.expressions"/>
>       <plugin id="org.eclipse.core.jobs"/>
>       <plugin id="org.eclipse.core.runtime"/>
>       <plugin id="org.eclipse.core.runtime.compatibility.registry"
> fragment="true"/>
>       <plugin id="org.eclipse.equinox.app"/>
>       <plugin id="org.eclipse.equinox.common"/>
>       <plugin id="org.eclipse.equinox.launcher"/>
>       <plugin id="org.eclipse.equinox.launcher.cocoa.macosx"
> fragment="true"/>
>       <plugin id="org.eclipse.equinox.preferences"/>
>       <plugin id="org.eclipse.equinox.registry"/>
>       <plugin id="org.eclipse.help"/>
>       <plugin id="org.eclipse.jface"/>
>       <plugin id="org.eclipse.jface.databinding"/>
>       <plugin id="org.eclipse.osgi"/>
>       <plugin id="org.eclipse.swt"/>
>       <plugin id="org.eclipse.swt.cocoa.macosx" fragment="true"/>
>       <plugin id="org.eclipse.ui"/>
>       <plugin id="org.eclipse.ui.cocoa" fragment="true"/>
>       <plugin id="org.eclipse.ui.workbench"/>
>    </plugins>
> 
>    <features>
>       <feature id="com.dubture.symfony.feature"/>
>       <feature id="com.dubture.twig.feature"/>
>       <feature id="com.dubture.symfony.twigfeature"/>
>    </features>
> 
> 
> </product>
> 
> ###### POM ############
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <project
>     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> http://maven.apache.org/xsd/maven-4.0.0.xsd";
>     xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance";>
> 
>     <modelVersion>4.0.0</modelVersion>
> 
>     <groupId>com.dubture</groupId>
>     <artifactId>com.dubture.symfony.rcp</artifactId>
>     <version>1.0.0-SNAPSHOT</version>
>     <packaging>eclipse-repository</packaging>
> 
>     <parent>
>         <groupId>com.dubture</groupId>
>         <artifactId>symfony</artifactId>
>         <version>0.0.1-SNAPSHOT</version>
>     </parent>
> 
>     <build>
>         <plugins>
>             <plugin>
>                 <groupId>org.eclipse.tycho</groupId>
>                 <artifactId>tycho-p2-director-plugin</artifactId>
>                 <version>${tycho.version}</version>
>                 <executions>
>                     <execution>
>                         <id>materialize-products</id>
>                         <goals>
>                             <goal>materialize-products</goal>
>                         </goals>
>                     </execution>
>                     <execution>
>                         <id>archive-products</id>
>                         <goals>
>                             <goal>archive-products</goal>
>                         </goals>
>                     </execution>
>                 </executions>
>             </plugin>
> 
>         </plugins>
>     </build>
> </project>

-- 
NEU: FreePhone - 0ct/min Handyspartarif mit Geld-zurück-Garantie!		
Jetzt informieren: http://www.gmx.net/de/go/freephone


Back to the top