You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Guillaume Nodet (JIRA)" <ji...@apache.org> on 2016/11/21 10:55:58 UTC

[jira] [Issue Comment Deleted] (KARAF-4827) Cannot install feature depending on other 2+ levels of features with prerequisite="true"

     [ https://issues.apache.org/jira/browse/KARAF-4827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guillaume Nodet updated KARAF-4827:
-----------------------------------
    Comment: was deleted

(was: That's not a bug at all.
Your definitions are wrong, you can't have circularity in prerequisites, as "prerequisite=true" means that one feature needs to be installed *before* the other can be installed.)

> Cannot install feature depending on other 2+ levels of features with prerequisite="true"
> ----------------------------------------------------------------------------------------
>
>                 Key: KARAF-4827
>                 URL: https://issues.apache.org/jira/browse/KARAF-4827
>             Project: Karaf
>          Issue Type: Bug
>          Components: karaf-feature
>    Affects Versions: 4.1.0
>            Reporter: Lijun Liao
>            Priority: Blocker
>             Fix For: 4.1.0
>
>
> Steps to reproduce the error:
> 1. Unpack apache-karaf-4.1.0-SNAPSHOT.tar.gz
> 2. Add following block to the file "system/org/apache/karaf/features/enterprise/4.1.0-SNAPSHOT/enterprise-4.1.0-SNAPSHOT-features.xml"
> {code:xml}
> 	<feature name="demo-a">
> 		<bundle>mvn:javax.interceptor/javax.interceptor-api/1.2</bundle>
> 	</feature>
> 	
> 	<feature name="demo-b">
> 		<feature prerequisite="true">demo-a</feature>
> 		<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax-inject/1_2</bundle>
> 	</feature>
> 	
> 	<feature name="demo-c">
> 		<feature prerequisite="true">demo-b</feature>
> 		<bundle>mvn:javax.el/javax.el-api/3.0.0</bundle>
> 	</feature>
> {code}
> 3. Delete folder data and file lock if available
> 4. Start karaf (command "bin/karaf")
> 5. Execute command "feature:install demo-c" in karaf shell, you should get the following error message. 
> {code}
> karaf@root()> feature:install demo-c                                                                                                   xx:xx:xx
> gogo: CircularPrerequisiteException: [demo-a/0.0.0]
> Error executing command: [demo-a/0.0.0]
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)