Hi JB,
thanks for the tip. So, another strange thing is:
- when this block occures - feature fail to install, no other feature is
possible to install, even some basic/simple one.
Please see attachment, full log of what I did.
In short ( last few lines ):
.
.
.
Done.
karaf@root()> feature:install -v my-infrastructure-requirements-jms ( this
is same as in previous feature definition )
Adding features: my-infrastructure-requirements-jms/[2.0.0,2.0.0]
^C~ # Fail here - waiting, but no return
karaf@root()> feature:info my-infrastructure-requirements-jms
Feature my-infrastructure-requirements-jms 2.0.0
Feature has no configuration
Feature configuration files:
/etc/org.apache.servicemix.activemq.service.cfg
Feature depends on:
aries-blueprint-spring 0.0.0
shell-compat [4.2.2, 5)
activemq-broker [5.15.7, 6)
activemq-cf [5.15.7, 6)
activemq-blueprint [5.15.7, 6)
jms [4.2.2, 5)
camel [2.23.0, 3)
camel-spring [2.23.0, 3)
camel-jms [2.23.0, 3)
camel-blueprint [2.23.0, 3)
camel-cxf [2.23.0, 3)
camel-jpa [2.23.0, 3)
pax-jms-activemq [1.0.2, 2)
Feature contains followed bundles:
mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.camel/7.1.0-SNAPSHOT
mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.service/7.1.0-SNAPSHOT
Feature has no conditionals.
karaf@root()> feature:install aries-blueprint-spring
^C~ # Fail here - after first waiting and no return, no additional feature
is possible to install
karaf@root()>
So I am able to "block" Karaf from installing additional features with
this, and this is not so nice "feature" to have in Karaf :) ( to be able
to block feature install )
Kind Regards,
Miroslav
V V sre., 5. sep. 2018 ob 10:36 je oseba Jean-Baptiste Onofré <
[email protected]> napisala:
> You should use feature:install -v -t to get details and simulation.
>
> Regards
> JB
>
> On 05/09/2018 10:34, Miroslav Beranič wrote:
>
> HI JB,
>
> this can be, I would have to check for each feature, but as said: when
> porting from Karaf 4.0.9 to 4.2.2, I guess this would have to be addressed
> more verbose -- some kind of warning message or something.
>
> I will re-create feature file with suggested changes, but I stopped using
> dependency/prerequisite attributes, as I found out I ran into different set
> of problems.
>
> I had this kind of problems, when setting up JPA datasource - as conumers
> complaint to on start on missing datasource - but bundles installed and
> started.
>
> It is "strange" when command "feature:install foo" does not return to
> terminal and there is no message in log file.
>
> Thanks, kind regards,
> Miroslav
>
>
>
> V V sre., 5. sep. 2018 ob 10:08 je oseba Jean-Baptiste Onofré <
> [email protected]> napisala:
>
>> Hi
>>
>> the resolver behavior is not exactly the same if you do:
>>
>> feature:install foo
>>
>> or
>>
>> feature:install jms bar foo
>>
>> If you feature expects another feature providing a service, than, the
>> "dependency" feature should be completely installed and started to provide
>> the services before your feature is install.
>>
>> For instance, if you have:
>>
>> <feature name="my" version="xx">
>> <feature>foo</feature>
>> <bundle>mvn:my/my/xx</bundle>
>> </feature>
>>
>> If "my" bundle has a requirement to a service provided by foo, then, you
>> can have an issue as foo can be installed async. So, in that case, you
>> should first install and start foo first. You can achieve this using
>> prerequisite flag:
>>
>> <feature name="my" version="xx">
>> <feature prerequisite="true">foo</feature>
>> <bundle>mvn:my/my/xx</bundle>
>> </feature>
>>
>> Do you think you are in this case ?
>>
>> Regards
>> JB
>>
>> On 05/09/2018 09:42, Miroslav Beranič wrote:
>>
>> Hi giys,
>>
>> I am tracking mailing list last few weeks, can be, I missed some mails.
>>
>> So, I think I have similar issue that what reported few days ago from
>> Thiago, with title "Unable to deploy a Karaf kar file containing a
>> ComponentFactory OSGi declarative service".
>>
>> I have application porting from ServiceMix 7.0.2 ( build from ServiceMix
>> GitHub master ) to Karaf 4.2.x ( fist 4.2.1 and now 4.2.2, both Github
>> source ).
>>
>> I have application in multiple Karaf Features. In ServiceMix 7.0.2 (
>> Karaf 4.0.9 ) I install application with on "super parent" feature, that is
>> a tree of features ( XSD Feature namespace 1.0 ), so without dependencies
>> or prerequisite attributes.
>>
>> Same set of features, when deployed in Karaf 4.2.x is "blocked", it stops
>> in different steps, at different features. But this is in features of
>> pre-defined features, like JMS, JPA, Hibernate, ActiveMQ, ...
>>
>> Strange thing is, when I install one single feature at a time it works.
>> For example ( there is multiple such feature groups, just one here ):
>>
>> <feature name="my-infrastructure-requirements-jms"
>> version="${project.version}">
>> <feature>aries-blueprint-spring</feature>
>> <feature version="[4.2.2, 5)">shell-compat</feature>
>> <feature version="[5.15.7, 6)">activemq-broker</feature>
>> <feature version="[5.15.7, 6)">activemq-cf</feature>
>> <feature version="[5.15.7, 6)">activemq-blueprint</feature>
>>
>> <bundle>mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.camel/7.1.0-SNAPSHOT</bundle>
>>
>> <bundle>mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.service/7.1.0-SNAPSHOT</bundle>
>>
>> <feature version="[4.2.2, 5)">jms</feature>
>> <feature version="[2.23.0, 3)">camel</feature>
>> <feature version="[2.23.0, 3)">camel-spring</feature>
>> <feature version="[2.23.0, 3)">camel-jms</feature>
>> <feature version="[2.23.0, 3)">camel-blueprint</feature>
>> <feature version="[2.23.0, 3)">camel-cxf</feature>
>> <feature version="[2.23.0, 3)">camel-jpa</feature>
>> <feature version="[1.0.2, 2)">pax-jms-activemq</feature>
>> <configfile
>> finalname="/etc/org.apache.servicemix.activemq.service.cfg">
>>
>> mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.service/${project.version}/cfg/activemq-service
>> </configfile>
>> </feature>
>>
>> So almost always it stops somewhere when installing this feature, but
>> when I install it one by one -- it works. ( it never installed when
>> installing "feature groups", this is the "feature group" it stops most of
>> the time, other is JPA related "feature group" ).
>>
>> so: feature:install my-infrastructure-requirements-jms
>>
>> has message in log:
>> 2018-09-05T09:16:08,539 | INFO | pipe-feature:install
>> my-infrastructure-requirements-jms | FeaturesServiceImpl | 11
>> - org.apache.karaf.features.core - 4.2.2.SNAPSHOT | Adding features:
>> my-infrastructure-requirements-jms/[2.0.0,2.0.0]
>>
>> That is all there is ... and it waits here, for ever. So it seems there
>> is really a condition race. So when I saw mail from Thiago, I am even more
>> sure, this is true.
>>
>> Here is full feature file. Please note, I have some features, to "fix"
>> feature install order - spring is a mess, as it starts to install version
>> 5, as "best one" but this is not the case for me - as I want to use
>> ActiveMQ. ( you can see I also use "future" version of ActiveMQ 5.15.7 - my
>> own build with updated versions of dependencies in ActiveMQ, same behaviour
>> is with "stock" version, so I do not see problem in this ). Other issue (
>> was ) with Jetty version 9.4.10 and 9.4.11, but this is fixed no in Karaf.
>>
>> Also ServiceMix 7.1.0-SNAPSHOT is my own build of source code from
>> 7.0.2-SNAPSHOT, to re-use ActiveMQ connection factory ( this is Servicemix
>> 7.0.2 with updated Camel version ).
>>
>> Here I use feature xsd namespace 1.4.0
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <features name="framework-${project.version}"
>> xmlns="http://karaf.apache.org/xmlns/features/v1.4.0"
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> xsi:schemaLocation="
>> http://karaf.apache.org/xmlns/features/v1.4.0
>> http://karaf.apache.org/xmlns/features/v1.4.0">
>>
>>
>> <repository>mvn:org.apache.camel.karaf/apache-camel/${org.apache.camel.version}/xml/features</repository>
>>
>> <repository>mvn:org.apache.activemq/activemq-karaf/${org.apache.activemq.version}/xml/features</repository>
>>
>> <repository>mvn:org.apache.karaf.features/spring-legacy/${org.apache.karaf.version}/xml/features</repository>
>>
>> <repository>mvn:org.ops4j.pax.jms/pax-jms-features/${org.ops4j.pax.jms.version}/xml/features</repository>
>>
>> <repository>mvn:org.ops4j.pax.web/pax-web-features/${org.ops4j.pax.web.version}/xml/features</repository>
>>
>> <feature name="my-infrastructure-requirements-spring-43"
>> version="${project.version}">
>> <feature version="[4.3.18, 5)">spring</feature>
>> <feature version="[4.3.18, 5)">spring-tx</feature>
>> <feature version="[4.3.18, 5)">spring-jms</feature>
>> <feature version="[4.3.18, 5)">spring-orm</feature>
>> <feature version="[4.3.18, 5)">spring-oxm</feature>
>> <!-- Jetty -->
>> <feature version="[4.3.18, 5)">spring-web</feature>
>> <feature version="[4.3.18, 5)">spring-web-portlet</feature>
>> <feature version="[4.3.18, 5)">spring-websocket</feature>
>> </feature>
>>
>> <feature name="my-infrastructure-requirements-cxf"
>> version="${project.version}">
>> <feature version="[3.2.5, 4)">cxf</feature>
>> <feature version="[3.2.5, 4)">cxf-jaxws</feature>
>> <feature version="[3.2.5, 4)">cxf-jaxrs</feature>
>> </feature>
>>
>> <feature name="my-infrastructure-requirements-jpa"
>> version="${project.version}">
>> <feature version="[4.2.2, 5]">jdbc</feature>
>> <feature version="[2.7.0, 3)">jpa</feature>
>> <feature version="[5.2.9, 6)">hibernate</feature>
>> <feature version="[1.3.0, 2)">pax-jdbc-postgresql</feature>
>> <feature version="[1.3.0, 2)">pax-jdbc-pool-c3p0</feature>
>> <feature version="[4.2.2, 5)">aries-blueprint</feature>
>> <capability>
>>
>> osgi.service;objectClass=javax.persistence.spi.PersistenceProvider;effective:=active;javax.persistence.provider=org.hibernate.jpa.HibernatePersistenceProvider
>> </capability>
>> </feature>
>>
>> <feature name="my-infrastructure-requirements-jms"
>> version="${project.version}">
>> <feature>aries-blueprint-spring</feature>
>> <feature version="[4.2.2, 5)">shell-compat</feature>
>> <feature version="[5.15.7, 6)">activemq-broker</feature>
>> <feature version="[5.15.7, 6)">activemq-cf</feature>
>> <feature version="[5.15.7, 6)">activemq-blueprint</feature>
>>
>> <bundle>mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.camel/7.1.0-SNAPSHOT</bundle>
>>
>> <bundle>mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.service/7.1.0-SNAPSHOT</bundle>
>>
>> <feature version="[4.2.2, 5)">jms</feature>
>> <feature version="[2.23.0, 3)">camel</feature>
>> <feature version="[2.23.0, 3)">camel-spring</feature>
>> <feature version="[2.23.0, 3)">camel-jms</feature>
>> <feature version="[2.23.0, 3)">camel-blueprint</feature>
>> <feature version="[2.23.0, 3)">camel-cxf</feature>
>> <feature version="[2.23.0, 3)">camel-jpa</feature>
>> <feature version="[1.0.2, 2)">pax-jms-activemq</feature>
>> <configfile
>> finalname="/etc/org.apache.servicemix.activemq.service.cfg">
>>
>> mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.service/${project.version}/cfg/activemq-service
>> </configfile>
>> </feature>
>> <feature name="my-infrastructure-requirements-initial"
>> version="${project.version}">
>> <feature version="[4.2.2, 5)">scr</feature>
>> <feature version="[4.2.2, 5)">jndi</feature>
>> <feature version="[2.0.0, 3)">transaction</feature>
>> <feature version="[1.0.0, 2)">pax-cdi</feature>
>> </feature>
>>
>> <feature name="my-infrastructure-requirements-ext"
>> version="${project.version}">
>> <feature
>> version="${project.version}">my-infrastructure-requirements-spring-43</feature>
>> <feature version="[1.3.0, 2)">pax-jdbc-config</feature>
>>
>> <feature version="[3.2.5, 4)">cxf-transports-jms</feature>
>> </feature>
>>
>> <feature name="my-infrastructure-datasource"
>> version="${project.version}">
>>
>> <bundle>mvn:com.miroslav.my.infrastructure/data-source/${project.version}</bundle>
>> </feature>
>>
>> <feature name="my-infrastructure-toolbox"
>> version="${project.version}">
>>
>> <bundle>mvn:com.miroslav.my.infrastructure/toolbox/${project.version}</bundle>
>>
>> <bundle>mvn:com.miroslav.my.infrastructure/toolbox-shell-command/${project.version}</bundle>
>> </feature>
>>
>> <feature name="my-infrastructure-webservice"
>> version="${project.version}">
>>
>> <bundle>mvn:com.miroslav.my.infrastructure.webservice/model/${project.version}</bundle>
>>
>> <bundle>mvn:com.miroslav.my.infrastructure.webservice/toolbox/${project.version}</bundle>
>> </feature>
>>
>> <feature name="my-infrastructure" version="${project.version}">
>> <feature
>> version="${project.version}">my-infrastructure-requirements-spring-43</feature>
>> <feature
>> version="${project.version}">my-infrastructure-requirements-jpa</feature>
>> <feature
>> version="${project.version}">my-infrastructure-requirements-cxf</feature>
>> <feature
>> version="${project.version}">my-infrastructure-requirements-jms</feature>
>> <feature
>> version="${project.version}">my-infrastructure-datasource</feature>
>> <feature
>> version="${project.version}">my-infrastructure-toolbox</feature>
>> <feature
>> version="${project.version}">my-infrastructure-webservice</feature>
>> </feature>
>> </features>
>>
>>
>> If you need some more info, please let me know. ( this feature file is "a
>> mess", as I did not know what is wrong ... so no need to judge it for its
>> beauty please :D :D )
>>
>> I am building ActiveMQ, Camel, Pax, Karaf, Hibernate ... SNAPSHOT
>> versions daily and testing it.
>>
>> Kind Regards,
>> Miroslav
>>
>>
>>
>> --
>> Miroslav Beranič
>> MIBESIS
>> +386(0)40/814-843
>> [email protected]
>> http://www.mibesis.si
>>
>>
>>
>
> --
> Miroslav Beranič
> MIBESIS
> +386(0)40/814-843
> [email protected]
> http://www.mibesis.si
>
>
>
--
Miroslav Beranič
MIBESIS
+386(0)40/814-843
[email protected]
http://www.mibesis.si
miroslav@zbook:~/Workspace/Apache/Karaf/karaf/assemblies/apache-karaf/target/assembly$
JAVA_HOME=/opt/jdk ./bin/karaf clean debug
Listening for transport dt_socket at address: 5005
__ __ ____
/ //_/____ __________ _/ __/
/ ,< / __ `/ ___/ __ `/ /_
/ /| |/ /_/ / / / /_/ / __/
/_/ |_|\__,_/_/ \__,_/_/
Apache Karaf (4.2.2-SNAPSHOT)
Hit '<tab>' for a list of available commands
and '[cmd] --help' for help on a specific command.
Hit '<ctrl-d>' or type 'system:shutdown' or 'logout' to shutdown Karaf.
karaf@root()> feature:repo-add mvn:com.example.my.features/my/2.0.0/xml/features
karaf@root()> feature:uninstall -v -t my-infrastructure-requirements-initial
karaf@root()> feature:repo-add mvn:com.example.my.features/my/2.0.0/xml/features
Adding feature url mvn:com.example.my.features/my/2.0.0/xml/features
karaf@root()> feature:info my-infrastructure-requirements-initial
Feature my-infrastructure-requirements-initial 2.0.0
Feature has no configuration
Feature has no configuration files
Feature depends on:
scr [4.2.2, 5)
jndi [4.2.2, 5)
transaction [2.0.0, 3)
pax-cdi [1.0.0, 2)
Feature has no bundles.
Feature has no conditionals.
karaf@root()> feature:install -v -t my-infrastructure-requirements-initial
Adding features: my-infrastructure-requirements-initial/[2.0.0,2.0.0]
Changes to perform:
Region: root
Bundles to install:
mvn:javax.annotation/javax.annotation-api/1.2
mvn:javax.el/javax.el-api/3.0.0
mvn:javax.enterprise/cdi-api/1.2
mvn:javax.interceptor/javax.interceptor-api/1.2
mvn:javax.transaction/javax.transaction-api/1.2
mvn:org.jboss.classfilewriter/jboss-classfilewriter/1.1.2.Final
mvn:org.apache.aries.jndi/org.apache.aries.jndi.api/1.1.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.core/1.0.2
mvn:org.apache.aries.jndi/org.apache.aries.jndi.legacy.support/1.0.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.rmi/1.0.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.url/1.1.0
mvn:org.apache.aries.proxy/org.apache.aries.proxy/1.1.2
mvn:org.apache.felix/org.apache.felix.scr/2.1.2
mvn:org.apache.karaf.jndi/org.apache.karaf.jndi.core/4.2.2-SNAPSHOT
mvn:org.apache.karaf.scr/org.apache.karaf.scr.management/4.2.2-SNAPSHOT
mvn:org.apache.karaf.scr/org.apache.karaf.scr.state/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax-inject/1_2
mvn:org.apache.xbean/xbean-asm6-shaded/4.6
mvn:org.apache.xbean/xbean-bundleutils/4.6
mvn:org.apache.xbean/xbean-finder-shaded/4.6
mvn:org.apache.xbean/xbean-naming/4.9
mvn:org.jboss.weld/weld-osgi-bundle/2.4.5.Final
mvn:org.ow2.asm/asm/6.2.1
mvn:org.ow2.asm/asm-commons/6.2.1
mvn:org.ow2.asm/asm-tree/6.2.1
mvn:org.ow2.asm/asm-analysis/6.2.1
mvn:org.ow2.asm/asm-util/6.2.1
mvn:org.ops4j.pax.cdi/pax-cdi-api/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-extender/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-extension/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-spi/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-weld/1.0.0
mvn:org.ops4j.pax.transx/pax-transx-tm-api/0.4.0
mvn:org.ops4j.pax.transx/pax-transx-tm-geronimo/0.4.0
karaf@root()> feature:install -v my-infrastructure-requirements-initial
Adding features: my-infrastructure-requirements-initial/[2.0.0,2.0.0]
Changes to perform:
Region: root
Bundles to install:
mvn:javax.annotation/javax.annotation-api/1.2
mvn:javax.el/javax.el-api/3.0.0
mvn:javax.enterprise/cdi-api/1.2
mvn:javax.interceptor/javax.interceptor-api/1.2
mvn:javax.transaction/javax.transaction-api/1.2
mvn:org.jboss.classfilewriter/jboss-classfilewriter/1.1.2.Final
mvn:org.apache.aries.jndi/org.apache.aries.jndi.api/1.1.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.core/1.0.2
mvn:org.apache.aries.jndi/org.apache.aries.jndi.legacy.support/1.0.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.rmi/1.0.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.url/1.1.0
mvn:org.apache.aries.proxy/org.apache.aries.proxy/1.1.2
mvn:org.apache.felix/org.apache.felix.scr/2.1.2
mvn:org.apache.karaf.jndi/org.apache.karaf.jndi.core/4.2.2-SNAPSHOT
mvn:org.apache.karaf.scr/org.apache.karaf.scr.management/4.2.2-SNAPSHOT
mvn:org.apache.karaf.scr/org.apache.karaf.scr.state/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax-inject/1_2
mvn:org.apache.xbean/xbean-asm6-shaded/4.6
mvn:org.apache.xbean/xbean-bundleutils/4.6
mvn:org.apache.xbean/xbean-finder-shaded/4.6
mvn:org.apache.xbean/xbean-naming/4.9
mvn:org.jboss.weld/weld-osgi-bundle/2.4.5.Final
mvn:org.ow2.asm/asm/6.2.1
mvn:org.ow2.asm/asm-commons/6.2.1
mvn:org.ow2.asm/asm-tree/6.2.1
mvn:org.ow2.asm/asm-analysis/6.2.1
mvn:org.ow2.asm/asm-util/6.2.1
mvn:org.ops4j.pax.cdi/pax-cdi-api/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-extender/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-extension/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-spi/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-weld/1.0.0
mvn:org.ops4j.pax.transx/pax-transx-tm-api/0.4.0
mvn:org.ops4j.pax.transx/pax-transx-tm-geronimo/0.4.0
Installing bundles:
mvn:javax.annotation/javax.annotation-api/1.2
mvn:javax.el/javax.el-api/3.0.0
mvn:javax.enterprise/cdi-api/1.2
mvn:javax.interceptor/javax.interceptor-api/1.2
mvn:javax.transaction/javax.transaction-api/1.2
mvn:org.jboss.classfilewriter/jboss-classfilewriter/1.1.2.Final
mvn:org.apache.aries.jndi/org.apache.aries.jndi.api/1.1.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.core/1.0.2
mvn:org.apache.aries.jndi/org.apache.aries.jndi.legacy.support/1.0.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.rmi/1.0.0
mvn:org.apache.aries.jndi/org.apache.aries.jndi.url/1.1.0
mvn:org.apache.aries.proxy/org.apache.aries.proxy/1.1.2
mvn:org.apache.felix/org.apache.felix.scr/2.1.2
mvn:org.apache.karaf.jndi/org.apache.karaf.jndi.core/4.2.2-SNAPSHOT
mvn:org.apache.karaf.scr/org.apache.karaf.scr.management/4.2.2-SNAPSHOT
mvn:org.apache.karaf.scr/org.apache.karaf.scr.state/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax-inject/1_2
mvn:org.apache.xbean/xbean-asm6-shaded/4.6
mvn:org.apache.xbean/xbean-bundleutils/4.6
mvn:org.apache.xbean/xbean-finder-shaded/4.6
mvn:org.apache.xbean/xbean-naming/4.9
mvn:org.jboss.weld/weld-osgi-bundle/2.4.5.Final
mvn:org.ow2.asm/asm/6.2.1
mvn:org.ow2.asm/asm-commons/6.2.1
mvn:org.ow2.asm/asm-tree/6.2.1
mvn:org.ow2.asm/asm-analysis/6.2.1
mvn:org.ow2.asm/asm-util/6.2.1
mvn:org.ops4j.pax.cdi/pax-cdi-api/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-extender/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-extension/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-spi/1.0.0
mvn:org.ops4j.pax.cdi/pax-cdi-weld/1.0.0
mvn:org.ops4j.pax.transx/pax-transx-tm-api/0.4.0
mvn:org.ops4j.pax.transx/pax-transx-tm-geronimo/0.4.0
Starting bundles:
org.objectweb.asm/6.2.1
org.objectweb.asm.tree/6.2.1
org.objectweb.asm.tree.analysis/6.2.1
org.objectweb.asm.util/6.2.1
org.objectweb.asm.commons/6.2.1
org.apache.aries.proxy/1.1.2
org.apache.felix.scr/2.1.2
org.apache.karaf.scr.management/4.2.2.SNAPSHOT
org.apache.xbean.naming/4.9.0
org.apache.karaf.jndi.core/4.2.2.SNAPSHOT
org.apache.aries.jndi.legacy.support/1.0.0
org.apache.aries.jndi.api/1.1.0
org.apache.aries.jndi.url/1.1.0
org.apache.aries.jndi.rmi/1.0.0
org.apache.aries.jndi.core/1.0.2
org.apache.karaf.scr.state/4.2.2.SNAPSHOT
javax.el-api/3.0.0
org.apache.servicemix.bundles.javax-inject/1.0.0.2
javax.interceptor-api/1.2.0
javax.enterprise.cdi-api/1.2.0
org.ops4j.pax.cdi.api/1.0.0
javax.annotation-api/1.2.0
javax.transaction-api/1.2.0
jboss-classfilewriter/1.1.2.Final
org.jboss.weld.osgi-bundle/2.4.5.Final
org.apache.xbean.asm6-shaded/4.6.0
org.apache.xbean.bundleutils/4.6.0
org.apache.xbean.finder-shaded/4.6.0
org.ops4j.pax.cdi.spi/1.0.0
org.ops4j.pax.cdi.weld/1.0.0
org.ops4j.pax.cdi.extender/1.0.0
org.ops4j.pax.transx.pax-transx-tm-api/0.4.0
org.ops4j.pax.cdi.extension/1.0.0
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
Done.
karaf@root()> feature:install -v my-infrastructure-requirements-spring-43
Adding features: my-infrastructure-requirements-spring-43/[2.0.0,2.0.0]
Changes to perform:
Region: root
Bundles to uninstall:
org.apache.xbean.asm6-shaded/4.6.0
org.apache.xbean.finder-shaded/4.6.0
Bundles to install:
mvn:javax.mail/mail/1.4.4
wrap:mvn:javax.portlet/portlet-api/2.0$Export-Package=javax.portlet.*;version=2.0
mvn:javax.servlet/javax.servlet-api/3.1.0
mvn:javax.websocket/javax.websocket-api/1.1
mvn:org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle/1.0.10
mvn:org.apache.geronimo.specs/geronimo-jaspic_1.0_spec/1.1
mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1
mvn:org.apache.karaf.http/org.apache.karaf.http.core/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.aopalliance/1.0_6
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
mvn:org.apache.xbean/xbean-finder/4.6
mvn:org.eclipse.jetty/jetty-client/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-continuation/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-deploy/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-io/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jaas/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jmx/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jndi/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-plus/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-rewrite/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-security/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jaspi/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-server/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-servlet/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-servlets/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-util/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-util-ajax/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-webapp/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-xml/9.4.11.v20180605
mvn:org.ops4j.pax.web/pax-web-api/7.2.3
mvn:org.ops4j.pax.web/pax-web-jetty/7.2.3
mvn:org.ops4j.pax.web/pax-web-runtime/7.2.3
mvn:org.ops4j.pax.web/pax-web-spi/7.2.3
Stopping bundles:
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
org.ops4j.pax.cdi.spi/1.0.0
org.ops4j.pax.cdi.extension/1.0.0
org.ops4j.pax.cdi.extender/1.0.0
org.jboss.weld.osgi-bundle/2.4.5.Final
org.apache.xbean.finder-shaded/4.6.0
org.apache.xbean.asm6-shaded/4.6.0
org.ops4j.pax.cdi.weld/1.0.0
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1
Uninstalling bundles:
org.apache.xbean.asm6-shaded/4.6.0
org.apache.xbean.finder-shaded/4.6.0
Installing bundles:
mvn:javax.mail/mail/1.4.4
wrap:mvn:javax.portlet/portlet-api/2.0$Export-Package=javax.portlet.*;version=2.0
mvn:javax.servlet/javax.servlet-api/3.1.0
mvn:javax.websocket/javax.websocket-api/1.1
mvn:org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle/1.0.10
mvn:org.apache.geronimo.specs/geronimo-jaspic_1.0_spec/1.1
mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1
mvn:org.apache.karaf.http/org.apache.karaf.http.core/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.aopalliance/1.0_6
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
mvn:org.apache.xbean/xbean-finder/4.6
mvn:org.eclipse.jetty/jetty-client/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-continuation/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-deploy/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-io/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jaas/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jmx/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jndi/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-plus/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-rewrite/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-security/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-jaspi/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-server/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-servlet/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-servlets/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-util/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-util-ajax/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-webapp/9.4.11.v20180605
mvn:org.eclipse.jetty/jetty-xml/9.4.11.v20180605
mvn:org.ops4j.pax.web/pax-web-api/7.2.3
mvn:org.ops4j.pax.web/pax-web-jetty/7.2.3
mvn:org.ops4j.pax.web/pax-web-runtime/7.2.3
mvn:org.ops4j.pax.web/pax-web-spi/7.2.3
Refreshing bundles:
org.apache.xbean.asm6-shaded/4.6.0 (Bundle will be uninstalled)
org.apache.xbean.finder-shaded/4.6.0 (Bundle will be uninstalled)
org.jboss.weld.osgi-bundle/2.4.5.Final (Should be wired to:
javax.servlet-api/3.1.0 (through [org.jboss.weld.osgi-bundle/2.4.5.Final]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=javax.servlet)"))
org.ops4j.pax.cdi.extender/1.0.0 (Wired to org.ops4j.pax.cdi.spi/1.0.0
which is being refreshed)
org.ops4j.pax.cdi.extension/1.0.0 (Wired to org.ops4j.pax.cdi.spi/1.0.0
which is being refreshed)
org.ops4j.pax.cdi.spi/1.0.0 (Wired to org.apache.xbean.finder-shaded/4.6.0
which is being refreshed)
org.ops4j.pax.cdi.weld/1.0.0 (Wired to
org.jboss.weld.osgi-bundle/2.4.5.Final which is being refreshed)
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1 (Should be wired to:
org.apache.geronimo.specs.geronimo-jms_1.1_spec/1.1.1 (through
[org.ops4j.pax.logging.pax-logging-log4j2/1.10.1] osgi.wiring.package;
resolution:=optional; filter:="(osgi.wiring.package=javax.jms)"),
javax.mail/1.4.4 (through [org.ops4j.pax.logging.pax-logging-log4j2/1.10.1]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=javax.mail)"))
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0 (Should be wired to:
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1 (through
[org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0] osgi.wiring.package;
resolution:=optional;
filter:="(osgi.wiring.package=org.springframework.transaction)"))
Starting bundles:
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1
org.apache.geronimo.specs.geronimo-jms_1.1_spec/1.1.1
javax.servlet-api/3.1.0
org.ops4j.pax.web.pax-web-api/7.2.3
org.ops4j.pax.web.pax-web-spi/7.2.3
javax.websocket-api/1.1.0
org.apache.aries.spifly.dynamic.bundle/1.0.10
org.eclipse.jetty.util/9.4.11.v20180605
org.eclipse.jetty.jmx/9.4.11.v20180605
org.eclipse.jetty.io/9.4.11.v20180605
org.eclipse.jetty.http/9.4.11.v20180605
org.eclipse.jetty.server/9.4.11.v20180605
org.eclipse.jetty.security/9.4.11.v20180605
org.eclipse.jetty.servlet/9.4.11.v20180605
org.eclipse.jetty.xml/9.4.11.v20180605
org.eclipse.jetty.jaas/9.4.11.v20180605
org.apache.geronimo.specs.geronimo-jaspic_1.0_spec/1.1.0
org.eclipse.jetty.security.jaspi/9.4.11.v20180605
org.eclipse.jetty.webapp/9.4.11.v20180605
org.eclipse.jetty.deploy/9.4.11.v20180605
org.eclipse.jetty.jndi/9.4.11.v20180605
org.eclipse.jetty.plus/9.4.11.v20180605
org.eclipse.jetty.continuation/9.4.11.v20180605
org.eclipse.jetty.client/9.4.11.v20180605
org.eclipse.jetty.rewrite/9.4.11.v20180605
org.eclipse.jetty.servlets/9.4.11.v20180605
org.eclipse.jetty.util.ajax/9.4.11.v20180605
org.ops4j.pax.web.pax-web-jetty/7.2.3
org.ops4j.pax.web.pax-web-runtime/7.2.3
org.apache.karaf.http.core/4.2.2.SNAPSHOT
javax.portlet/0.0.0
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
org.apache.servicemix.bundles.aopalliance/1.0.0.6
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
javax.mail/1.4.4
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
org.apache.xbean.finder/4.6.0
org.ops4j.pax.cdi.spi/1.0.0
org.ops4j.pax.cdi.extender/1.0.0
org.jboss.weld.osgi-bundle/2.4.5.Final
org.ops4j.pax.cdi.extension/1.0.0
org.ops4j.pax.cdi.weld/1.0.0
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
Done.
karaf@root()> feature:install -v my-infrastructure-requirements-cxf
Adding features: my-infrastructure-requirements-cxf/[2.0.0,2.0.0]
Changes to perform:
Region: root
Bundles to uninstall:
javax.annotation-api/1.2.0
Bundles to update:
javax.mail/1.4.4 with mvn:javax.mail/mail/1.4.7
Bundles to install:
mvn:com.fasterxml.woodstox/woodstox-core/5.1.0
mvn:com.google.guava/guava/20.0
mvn:io.dropwizard.metrics/metrics-core/3.2.6
mvn:javax.annotation/javax.annotation-api/1.3
mvn:joda-time/joda-time/2.9.4
mvn:net.sf.ehcache/ehcache/2.10.5
mvn:commons-codec/commons-codec/1.11
mvn:org.apache.commons/commons-lang3/3.7
mvn:org.apache.cxf/cxf-core/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-coloc/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-corba/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-soap/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-xml/3.2.6
mvn:org.apache.cxf/cxf-rt-databinding-aegis/3.2.6
mvn:org.apache.cxf/cxf-rt-databinding-jaxb/3.2.6
mvn:org.apache.cxf/cxf-rt-features-clustering/3.2.6
mvn:org.apache.cxf/cxf-rt-features-logging/3.2.6
mvn:org.apache.cxf/cxf-rt-features-metrics/3.2.6
mvn:org.apache.cxf/cxf-rt-features-throttling/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-jaxrs/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-jaxws/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-js/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-simple/3.2.6
mvn:org.apache.cxf/cxf-rt-javascript/3.2.6
mvn:org.apache.cxf/cxf-rt-management/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-client/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-extension-providers/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-extension-search/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-json-basic/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-service-description/3.2.6
mvn:org.apache.cxf/cxf-rt-security/3.2.6
mvn:org.apache.cxf/cxf-rt-security-saml/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-http/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-http-jetty/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-jms/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-local/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-udp/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-addr/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-mex/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-policy/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-rm/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-security/3.2.6
mvn:org.apache.cxf/cxf-rt-wsdl/3.2.6
mvn:org.apache.cxf.karaf/cxf-karaf-commands/3.2.6
mvn:org.apache.cxf.xjc-utils/cxf-xjc-runtime/3.2.2
mvn:org.apache.geronimo.specs/geronimo-osgi-registry/1.1
mvn:org.apache.mina/mina-core/2.0.19
mvn:org.apache.neethi/neethi/3.1.1
mvn:org.apache.santuario/xmlsec/2.1.2
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.bcel/5.2_4
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.fastinfoset/1.2.13_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jasypt/1.9.0_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-xjc/2.2.11_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.opensaml/3.3.0_2
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.rhino/1.7R2_3
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.saaj-impl/1.3.23_2
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.wsdl4j/1.6.3_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan/2.7.2_3
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xerces/2.11.0_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xmlresolver/1.2_5
mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxrs-api-2.1/2.9.1
mvn:org.apache.ws.xmlschema/xmlschema-core/2.2.3
mvn:org.apache.wss4j/wss4j-bindings/2.2.2
mvn:org.apache.wss4j/wss4j-policy/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-common/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-dom/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-policy-stax/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-stax/2.2.2
mvn:org.codehaus.jettison/jettison/1.4.0
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-api/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-client/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-common/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/javax-websocket-client-impl/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/javax-websocket-server-impl/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-server/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-servlet/9.4.11.v20180605
mvn:org.jvnet.staxex/stax-ex/1.7.6
mvn:org.codehaus.woodstox/stax2-api/4.1
Stopping bundles:
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
org.ops4j.pax.cdi.weld/1.0.0
org.ops4j.pax.cdi.extension/1.0.0
org.jboss.weld.osgi-bundle/2.4.5.Final
org.eclipse.jetty.security.jaspi/9.4.11.v20180605
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
org.apache.geronimo.specs.geronimo-jaspic_1.0_spec/1.1.0
javax.mail/1.4.4
javax.annotation-api/1.2.0
org.apache.sshd.core/1.7.0
org.ops4j.pax.web.pax-web-runtime/7.2.3
org.ops4j.pax.web.pax-web-jetty/7.2.3
org.apache.karaf.shell.ssh/4.2.2.SNAPSHOT
org.apache.servicemix.bundles.jaxb-impl/2.2.11.1
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1
Uninstalling bundles:
javax.annotation-api/1.2.0
Updating bundles:
mvn:javax.mail/mail/1.4.7
Installing bundles:
mvn:com.fasterxml.woodstox/woodstox-core/5.1.0
mvn:com.google.guava/guava/20.0
mvn:io.dropwizard.metrics/metrics-core/3.2.6
mvn:javax.annotation/javax.annotation-api/1.3
mvn:joda-time/joda-time/2.9.4
mvn:net.sf.ehcache/ehcache/2.10.5
mvn:commons-codec/commons-codec/1.11
mvn:org.apache.commons/commons-lang3/3.7
mvn:org.apache.cxf/cxf-core/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-coloc/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-corba/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-soap/3.2.6
mvn:org.apache.cxf/cxf-rt-bindings-xml/3.2.6
mvn:org.apache.cxf/cxf-rt-databinding-aegis/3.2.6
mvn:org.apache.cxf/cxf-rt-databinding-jaxb/3.2.6
mvn:org.apache.cxf/cxf-rt-features-clustering/3.2.6
mvn:org.apache.cxf/cxf-rt-features-logging/3.2.6
mvn:org.apache.cxf/cxf-rt-features-metrics/3.2.6
mvn:org.apache.cxf/cxf-rt-features-throttling/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-jaxrs/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-jaxws/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-js/3.2.6
mvn:org.apache.cxf/cxf-rt-frontend-simple/3.2.6
mvn:org.apache.cxf/cxf-rt-javascript/3.2.6
mvn:org.apache.cxf/cxf-rt-management/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-client/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-extension-providers/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-extension-search/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-json-basic/3.2.6
mvn:org.apache.cxf/cxf-rt-rs-service-description/3.2.6
mvn:org.apache.cxf/cxf-rt-security/3.2.6
mvn:org.apache.cxf/cxf-rt-security-saml/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-http/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-http-jetty/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-jms/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-local/3.2.6
mvn:org.apache.cxf/cxf-rt-transports-udp/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-addr/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-mex/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-policy/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-rm/3.2.6
mvn:org.apache.cxf/cxf-rt-ws-security/3.2.6
mvn:org.apache.cxf/cxf-rt-wsdl/3.2.6
mvn:org.apache.cxf.karaf/cxf-karaf-commands/3.2.6
mvn:org.apache.cxf.xjc-utils/cxf-xjc-runtime/3.2.2
mvn:org.apache.geronimo.specs/geronimo-osgi-registry/1.1
mvn:org.apache.mina/mina-core/2.0.19
mvn:org.apache.neethi/neethi/3.1.1
mvn:org.apache.santuario/xmlsec/2.1.2
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.bcel/5.2_4
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.fastinfoset/1.2.13_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jasypt/1.9.0_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-xjc/2.2.11_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.opensaml/3.3.0_2
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.rhino/1.7R2_3
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.saaj-impl/1.3.23_2
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.wsdl4j/1.6.3_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan/2.7.2_3
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xerces/2.11.0_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xmlresolver/1.2_5
mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.jaxrs-api-2.1/2.9.1
mvn:org.apache.ws.xmlschema/xmlschema-core/2.2.3
mvn:org.apache.wss4j/wss4j-bindings/2.2.2
mvn:org.apache.wss4j/wss4j-policy/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-common/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-dom/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-policy-stax/2.2.2
mvn:org.apache.wss4j/wss4j-ws-security-stax/2.2.2
mvn:org.codehaus.jettison/jettison/1.4.0
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-api/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-client/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-common/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/javax-websocket-client-impl/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/javax-websocket-server-impl/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-server/9.4.11.v20180605
mvn:org.eclipse.jetty.websocket/websocket-servlet/9.4.11.v20180605
mvn:org.jvnet.staxex/stax-ex/1.7.6
mvn:org.codehaus.woodstox/stax2-api/4.1
Stopping bundles:
javax.mail/1.4.7
Refreshing bundles:
javax.annotation-api/1.2.0 (Bundle will be uninstalled)
javax.mail/1.4.7 (Bundle will be updated)
org.apache.geronimo.specs.geronimo-jaspic_1.0_spec/1.1.0 (Should be wired
to: org.apache.geronimo.specs.geronimo-osgi-registry/1.1.0 (through
[org.apache.geronimo.specs.geronimo-jaspic_1.0_spec/1.1.0] osgi.wiring.package;
resolution:=optional;
filter:="(osgi.wiring.package=org.apache.geronimo.osgi.registry.api)"))
org.apache.karaf.shell.ssh/4.2.2.SNAPSHOT (Wired to
org.apache.sshd.core/1.7.0 which is being refreshed)
org.apache.servicemix.bundles.jaxb-impl/2.2.11.1 (Should be wired to:
org.apache.servicemix.bundles.fastinfoset/1.2.13.1 (through
[org.apache.servicemix.bundles.jaxb-impl/2.2.11.1] osgi.wiring.package;
resolution:=optional;
filter:="(osgi.wiring.package=com.sun.xml.fastinfoset.sax)"),
org.jvnet.staxex.stax-ex/1.7.6 (through
[org.apache.servicemix.bundles.jaxb-impl/2.2.11.1] osgi.wiring.package;
resolution:=optional; filter:="(osgi.wiring.package=org.jvnet.staxex)"))
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 (Should be
wired to: joda-time/2.9.4 (through
[org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(&(osgi.wiring.package=org.joda.time)(version>=2.0.0)(!(version>=3.0.0)))"))
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
(Wired to javax.mail/1.4.4 which is being refreshed)
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 (Should be wired
to: org.apache.commons.codec/1.11.0 (through
[org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=org.apache.commons.codec.binary)"))
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1 (Wired to
javax.mail/1.4.4 which is being refreshed)
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1 (Wired
to org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.sshd.core/1.7.0 (Should be wired to: org.apache.mina.core/2.0.19
(through [org.apache.sshd.core/1.7.0] osgi.wiring.package;
resolution:=optional;
filter:="(&(osgi.wiring.package=org.apache.mina.core)(version>=2.0.0)(!(version>=3.0.0)))"))
org.eclipse.jetty.security.jaspi/9.4.11.v20180605 (Wired to
org.apache.geronimo.specs.geronimo-jaspic_1.0_spec/1.1.0 which is being
refreshed)
org.jboss.weld.osgi-bundle/2.4.5.Final (Wired to javax.annotation-api/1.2.0
which is being refreshed)
org.ops4j.pax.cdi.extension/1.0.0 (Wired to javax.annotation-api/1.2.0
which is being refreshed)
org.ops4j.pax.cdi.weld/1.0.0 (Wired to
org.jboss.weld.osgi-bundle/2.4.5.Final which is being refreshed)
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1 (Wired to javax.mail/1.4.4
which is being refreshed)
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0 (Wired to
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1 which is being
refreshed)
org.ops4j.pax.web.pax-web-jetty/7.2.3 (Wired to javax.annotation-api/1.2.0
which is being refreshed)
org.ops4j.pax.web.pax-web-runtime/7.2.3 (Should be wired to:
org.apache.servicemix.bundles.jasypt/1.9.0.1 (through
[org.ops4j.pax.web.pax-web-runtime/7.2.3] osgi.wiring.package;
resolution:=optional;
filter:="(osgi.wiring.package=org.jasypt.encryption.pbe)"))
Starting bundles:
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1
org.apache.geronimo.specs.geronimo-osgi-registry/1.1.0
javax.annotation-api/1.3.0
org.apache.servicemix.specs.jaxrs-api-2.1/2.9.1
stax2-api/4.1.0
org.apache.servicemix.bundles.jaxb-impl/2.2.11.1
org.apache.servicemix.bundles.jaxb-xjc/2.2.11.1
com.fasterxml.woodstox.woodstox-core/5.1.0
io.dropwizard.metrics.core/3.2.6
org.apache.servicemix.bundles.xmlresolver/1.2.0.5
org.jvnet.staxex.stax-ex/1.7.6
org.apache.servicemix.bundles.saaj-impl/1.3.23.2
joda-time/2.9.4
com.google.guava/20.0.0
org.apache.commons.codec/1.11.0
org.apache.santuario.xmlsec/2.1.2
org.apache.servicemix.bundles.opensaml/3.3.0.2
org.eclipse.jetty.websocket.common/9.4.11.v20180605
org.eclipse.jetty.websocket.api/9.4.11.v20180605
org.eclipse.jetty.websocket.client/9.4.11.v20180605
org.eclipse.jetty.websocket.javax.websocket/9.4.11.v20180605
org.apache.servicemix.bundles.jasypt/1.9.0.1
org.apache.geronimo.specs.geronimo-jaspic_1.0_spec/1.1.0
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
org.apache.sshd.core/1.7.0
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
org.apache.karaf.shell.ssh/4.2.2.SNAPSHOT
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
org.apache.servicemix.bundles.wsdl4j/1.6.3.1
org.apache.wss4j.wss4j-ws-security-common/2.2.2
org.apache.wss4j.wss4j-ws-security-dom/2.2.2
org.apache.servicemix.bundles.xerces/2.11.0.1
org.apache.ws.xmlschema.core/2.2.3
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
org.eclipse.jetty.websocket.servlet/9.4.11.v20180605
org.eclipse.jetty.websocket.server/9.4.11.v20180605
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
org.apache.wss4j.wss4j-bindings/2.2.2
org.apache.wss4j.wss4j-ws-security-stax/2.2.2
org.apache.servicemix.bundles.bcel/5.2.0.4
org.apache.servicemix.bundles.xalan/2.7.2.3
org.apache.servicemix.bundles.fastinfoset/1.2.13.1
org.codehaus.jettison.jettison/1.4.0
org.apache.neethi/3.1.1
org.apache.wss4j.wss4j-policy/2.2.2
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2
org.eclipse.jetty.security.jaspi/9.4.11.v20180605
org.eclipse.jetty.websocket.javax.websocket.server/9.4.11.v20180605
javax.mail/1.4.7
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
org.ops4j.pax.web.pax-web-jetty/7.2.3
org.ops4j.pax.web.pax-web-runtime/7.2.3
org.apache.commons.lang3/3.7.0
org.apache.cxf.cxf-rt-ws-policy/3.2.6
org.apache.cxf.cxf-rt-transports-http/3.2.6
org.apache.cxf.cxf-rt-frontend-jaxrs/3.2.6
org.apache.cxf.cxf-rt-rs-client/3.2.6
org.apache.cxf.cxf-rt-features-metrics/3.2.6
org.apache.cxf.cxf-rt-bindings-soap/3.2.6
org.apache.cxf.cxf-rt-databinding-aegis/3.2.6
org.apache.cxf.cxf-rt-features-clustering/3.2.6
net.sf.ehcache/2.10.5
org.apache.cxf.cxf-rt-bindings-xml/3.2.6
org.apache.cxf.cxf-rt-databinding-jaxb/3.2.6
org.apache.cxf.cxf-rt-frontend-simple/3.2.6
org.apache.cxf.cxf-rt-frontend-jaxws/3.2.6
org.apache.cxf.cxf-rt-security/3.2.6
org.apache.cxf.cxf-rt-security-saml/3.2.6
org.apache.cxf.cxf-rt-ws-addr/3.2.6
org.apache.cxf.cxf-rt-ws-mex/3.2.6
org.apache.cxf.cxf-rt-ws-security/3.2.6
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6
org.apache.cxf.cxf-rt-rs-json-basic/3.2.6
org.apache.cxf.cxf-rt-rs-extension-providers/3.2.6
org.apache.cxf.cxf-rt-management/3.2.6
org.apache.cxf.cxf-rt-ws-rm/3.2.6
org.apache.cxf.cxf-rt-features-logging/3.2.6
org.apache.cxf.cxf-rt-javascript/3.2.6
org.apache.cxf.cxf-rt-rs-extension-search/3.2.6
org.apache.cxf.cxf-rt-bindings-corba/3.2.6
org.apache.cxf.cxf-rt-bindings-coloc/3.2.6
org.apache.cxf.cxf-rt-transports-jms/3.2.6
org.apache.cxf.karaf.cxf-karaf-commands/3.2.6
org.apache.servicemix.bundles.rhino/1.0.0.7R2_3
org.apache.cxf.cxf-rt-frontend-js/3.2.6
org.apache.cxf.cxf-rt-features-throttling/3.2.6
org.apache.cxf.cxf-rt-transports-local/3.2.6
org.apache.cxf.xjc-utils.cxf-xjc-runtime/3.2.2
org.apache.cxf.cxf-rt-transports-udp/3.2.6
org.apache.cxf.cxf-rt-rs-service-description/3.2.6
org.apache.cxf.cxf-core/3.2.6
org.apache.cxf.cxf-rt-wsdl/3.2.6
org.jboss.weld.osgi-bundle/2.4.5.Final
org.ops4j.pax.cdi.extension/1.0.0
org.ops4j.pax.cdi.weld/1.0.0
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
org.apache.mina.core/2.0.19
Done.
karaf@root()> feature:install -v my-infrastructure-requirements-jpa
Adding features: my-infrastructure-requirements-jpa/[2.0.0,2.0.0]
Changes to perform:
Region: root
Bundles to update:
org.apache.servicemix.bundles.jasypt/1.9.0.1 with
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jasypt/1.9.2_1
Bundles to install:
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.ops4j.pax.jdbc/pax-jdbc/1.3.0
mvn:org.ops4j.pax.jdbc/pax-jdbc-config/1.3.0
mvn:org.ops4j.pax.jdbc/pax-jdbc-pool-common/1.3.0
mvn:org.osgi/org.osgi.service.jdbc/1.0.0
Stopping bundles:
org.apache.cxf.cxf-rt-ws-security/3.2.6
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6
org.apache.cxf.cxf-rt-security-saml/3.2.6
org.eclipse.jetty.websocket.server/9.4.11.v20180605
org.eclipse.jetty.websocket.javax.websocket.server/9.4.11.v20180605
org.eclipse.jetty.websocket.javax.websocket/9.4.11.v20180605
org.eclipse.jetty.websocket.client/9.4.11.v20180605
org.apache.wss4j.wss4j-ws-security-stax/2.2.2
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2
org.apache.wss4j.wss4j-ws-security-dom/2.2.2
org.apache.wss4j.wss4j-ws-security-common/2.2.2
org.apache.servicemix.bundles.jasypt/1.9.0.1
org.eclipse.jetty.webapp/9.4.11.v20180605
org.eclipse.jetty.servlets/9.4.11.v20180605
org.eclipse.jetty.servlet/9.4.11.v20180605
org.eclipse.jetty.server/9.4.11.v20180605
org.eclipse.jetty.security.jaspi/9.4.11.v20180605
org.eclipse.jetty.security/9.4.11.v20180605
org.eclipse.jetty.rewrite/9.4.11.v20180605
org.eclipse.jetty.plus/9.4.11.v20180605
org.eclipse.jetty.jndi/9.4.11.v20180605
org.eclipse.jetty.jaas/9.4.11.v20180605
org.eclipse.jetty.deploy/9.4.11.v20180605
org.eclipse.jetty.client/9.4.11.v20180605
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
org.ops4j.pax.web.pax-web-runtime/7.2.3
org.ops4j.pax.web.pax-web-jetty/7.2.3
Updating bundles:
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jasypt/1.9.2_1
Installing bundles:
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.ops4j.pax.jdbc/pax-jdbc/1.3.0
mvn:org.ops4j.pax.jdbc/pax-jdbc-config/1.3.0
mvn:org.ops4j.pax.jdbc/pax-jdbc-pool-common/1.3.0
mvn:org.osgi/org.osgi.service.jdbc/1.0.0
Stopping bundles:
org.apache.servicemix.bundles.jasypt/1.9.2.1
Refreshing bundles:
org.apache.cxf.cxf-rt-security-saml/3.2.6 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6 (Wired to
org.eclipse.jetty.security/9.4.11.v20180605 which is being refreshed)
org.apache.cxf.cxf-rt-ws-security/3.2.6 (Wired to
org.apache.cxf.cxf-rt-security-saml/3.2.6 which is being refreshed)
org.apache.servicemix.bundles.jasypt/1.9.2.1 (Bundle will be updated)
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1 (Should be
wired to: org.eclipse.jetty.websocket.client/9.4.11.v20180605 (through
[org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=org.eclipse.jetty.websocket.client)"),
org.eclipse.jetty.websocket.server/9.4.11.v20180605 (through
[org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=org.eclipse.jetty.websocket.server)"),
org.eclipse.jetty.http/9.4.11.v20180605 (through
[org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=org.eclipse.jetty.http)"))
org.apache.wss4j.wss4j-ws-security-common/2.2.2 (Wired to
org.apache.servicemix.bundles.jasypt/1.9.0.1 which is being refreshed)
org.apache.wss4j.wss4j-ws-security-dom/2.2.2 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.apache.wss4j.wss4j-ws-security-stax/2.2.2 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.eclipse.jetty.client/9.4.11.v20180605 (Should be wired to:
org.eclipse.jetty.http/9.4.11.v20180605 (through
[org.eclipse.jetty.client/9.4.11.v20180605] osgi.wiring.package;
filter:="(&(osgi.wiring.package=org.eclipse.jetty.http)(version>=9.4.11)(!(version>=10.0.0)))"))
org.eclipse.jetty.deploy/9.4.11.v20180605 (Wired to
org.eclipse.jetty.server/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.jaas/9.4.11.v20180605 (Wired to
org.eclipse.jetty.security/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.jndi/9.4.11.v20180605 (Wired to
org.eclipse.jetty.server/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.plus/9.4.11.v20180605 (Wired to
org.eclipse.jetty.jndi/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.rewrite/9.4.11.v20180605 (Should be wired to:
org.eclipse.jetty.http/9.4.11.v20180605 (through
[org.eclipse.jetty.rewrite/9.4.11.v20180605] osgi.wiring.package;
filter:="(&(osgi.wiring.package=org.eclipse.jetty.http)(version>=9.4.11)(!(version>=10.0.0)))"))
org.eclipse.jetty.security/9.4.11.v20180605 (Should be wired to:
org.eclipse.jetty.http/9.4.11.v20180605 (through
[org.eclipse.jetty.security/9.4.11.v20180605] osgi.wiring.package;
filter:="(&(osgi.wiring.package=org.eclipse.jetty.http)(version>=9.4.11)(!(version>=10.0.0)))"))
org.eclipse.jetty.security.jaspi/9.4.11.v20180605 (Wired to
org.eclipse.jetty.security/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.server/9.4.11.v20180605 (Should be wired to:
org.eclipse.jetty.http/9.4.11.v20180605 (through
[org.eclipse.jetty.server/9.4.11.v20180605] osgi.wiring.package;
filter:="(&(osgi.wiring.package=org.eclipse.jetty.http)(version>=9.4.11)(!(version>=10.0.0)))"))
org.eclipse.jetty.servlet/9.4.11.v20180605 (Wired to
org.eclipse.jetty.security/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.servlets/9.4.11.v20180605 (Wired to
org.eclipse.jetty.server/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.webapp/9.4.11.v20180605 (Wired to
org.eclipse.jetty.security/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.websocket.client/9.4.11.v20180605 (Wired to
org.eclipse.jetty.client/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.websocket.javax.websocket/9.4.11.v20180605 (Wired to
org.eclipse.jetty.client/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.websocket.javax.websocket.server/9.4.11.v20180605 (Wired
to org.eclipse.jetty.client/9.4.11.v20180605 which is being refreshed)
org.eclipse.jetty.websocket.server/9.4.11.v20180605 (Wired to
org.eclipse.jetty.server/9.4.11.v20180605 which is being refreshed)
org.ops4j.pax.web.pax-web-jetty/7.2.3 (Wired to
org.eclipse.jetty.security/9.4.11.v20180605 which is being refreshed)
org.ops4j.pax.web.pax-web-runtime/7.2.3 (Wired to
org.apache.servicemix.bundles.jasypt/1.9.0.1 which is being refreshed)
Starting bundles:
org.eclipse.jetty.server/9.4.11.v20180605
org.eclipse.jetty.rewrite/9.4.11.v20180605
org.eclipse.jetty.jndi/9.4.11.v20180605
org.eclipse.jetty.security/9.4.11.v20180605
org.eclipse.jetty.servlet/9.4.11.v20180605
org.eclipse.jetty.webapp/9.4.11.v20180605
org.eclipse.jetty.plus/9.4.11.v20180605
org.eclipse.jetty.client/9.4.11.v20180605
org.eclipse.jetty.websocket.client/9.4.11.v20180605
org.eclipse.jetty.websocket.javax.websocket/9.4.11.v20180605
org.eclipse.jetty.security.jaspi/9.4.11.v20180605
org.eclipse.jetty.jaas/9.4.11.v20180605
org.eclipse.jetty.websocket.server/9.4.11.v20180605
org.eclipse.jetty.websocket.javax.websocket.server/9.4.11.v20180605
org.eclipse.jetty.deploy/9.4.11.v20180605
org.eclipse.jetty.servlets/9.4.11.v20180605
org.ops4j.pax.web.pax-web-jetty/7.2.3
org.ops4j.pax.web.pax-web-runtime/7.2.3
org.apache.wss4j.wss4j-ws-security-common/2.2.2
org.apache.wss4j.wss4j-ws-security-stax/2.2.2
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
org.apache.wss4j.wss4j-ws-security-dom/2.2.2
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6
org.apache.cxf.cxf-rt-security-saml/3.2.6
org.apache.cxf.cxf-rt-ws-security/3.2.6
org.apache.servicemix.bundles.jasypt/1.9.2.1
org.osgi.service.jdbc/1.0.0.201505202023
org.ops4j.pax.jdbc.pool.common/1.3.0
org.ops4j.pax.jdbc.config/1.3.0
org.ops4j.pax.jdbc/1.3.0
Done.
Changes to perform:
Region: root
Bundles to install:
mvn:com.fasterxml/classmate/1.3.0
mvn:org.javassist/javassist/3.20.0-GA
mvn:net.bytebuddy/byte-buddy/1.6.6
mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.api/1.0.1
mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.cm/1.2.0
mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.core/1.9.0
mvn:org.apache.aries.jmx/org.apache.aries.jmx.blueprint.api/1.2.0
mvn:org.apache.aries.jmx/org.apache.aries.jmx.blueprint.core/1.2.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.api/2.7.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.blueprint/2.7.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.container/2.7.0
mvn:org.apache.aries.jpa.javax.persistence/javax.persistence_2.1/2.7.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.support/2.7.0
mvn:org.apache.aries.transaction/org.apache.aries.transaction.blueprint/1.1.1
mvn:org.apache.aries.transaction/org.apache.aries.transaction.blueprint/2.2.0
mvn:org.apache.karaf.bundle/org.apache.karaf.bundle.blueprintstate/4.2.2-SNAPSHOT
mvn:org.apache.karaf.deployer/org.apache.karaf.deployer.blueprint/4.2.2-SNAPSHOT
mvn:org.apache.karaf.jaas.blueprint/org.apache.karaf.jaas.blueprint.config/4.2.2-SNAPSHOT
mvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.core/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.antlr/2.7.7_5
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.c3p0/0.9.5.2_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.cglib/3.2.4_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.hibernate.common/hibernate-commons-annotations/5.0.1.Final
mvn:org.hibernate/hibernate-core/5.2.9.Final
mvn:org.hibernate/hibernate-osgi/5.2.9.Final
mvn:org.jboss/jandex/2.0.3.Final
mvn:org.jboss.logging/jboss-logging/3.3.0.Final
mvn:org.ops4j.pax.jdbc/pax-jdbc-pool-c3p0/1.3.0
mvn:org.postgresql/postgresql/9.4.1212.jre7
Stopping bundles:
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
org.ops4j.pax.cdi.weld/1.0.0
org.jboss.weld.osgi-bundle/2.4.5.Final
org.apache.cxf.karaf.cxf-karaf-commands/3.2.6
org.apache.cxf.cxf-rt-wsdl/3.2.6
org.apache.cxf.cxf-rt-ws-security/3.2.6
org.apache.cxf.cxf-rt-ws-rm/3.2.6
org.apache.cxf.cxf-rt-ws-policy/3.2.6
org.apache.cxf.cxf-rt-ws-mex/3.2.6
org.apache.cxf.cxf-rt-ws-addr/3.2.6
org.apache.cxf.cxf-rt-transports-udp/3.2.6
org.apache.cxf.cxf-rt-transports-local/3.2.6
org.apache.cxf.cxf-rt-transports-jms/3.2.6
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6
org.apache.cxf.cxf-rt-transports-http/3.2.6
org.apache.cxf.cxf-rt-security-saml/3.2.6
org.apache.cxf.cxf-rt-security/3.2.6
org.apache.cxf.cxf-rt-rs-service-description/3.2.6
org.apache.cxf.cxf-rt-rs-json-basic/3.2.6
org.apache.cxf.cxf-rt-rs-extension-search/3.2.6
org.apache.cxf.cxf-rt-rs-extension-providers/3.2.6
org.apache.cxf.cxf-rt-rs-client/3.2.6
org.apache.cxf.cxf-rt-management/3.2.6
org.apache.cxf.cxf-rt-javascript/3.2.6
org.apache.cxf.cxf-rt-frontend-simple/3.2.6
org.apache.cxf.cxf-rt-frontend-js/3.2.6
org.apache.cxf.cxf-rt-frontend-jaxws/3.2.6
org.apache.cxf.cxf-rt-frontend-jaxrs/3.2.6
org.apache.cxf.cxf-rt-features-throttling/3.2.6
org.apache.cxf.cxf-rt-features-metrics/3.2.6
org.apache.cxf.cxf-rt-features-logging/3.2.6
org.apache.cxf.cxf-rt-features-clustering/3.2.6
org.apache.cxf.cxf-rt-databinding-jaxb/3.2.6
org.apache.cxf.cxf-rt-databinding-aegis/3.2.6
org.apache.cxf.cxf-rt-bindings-xml/3.2.6
org.apache.cxf.cxf-rt-bindings-soap/3.2.6
org.apache.cxf.cxf-rt-bindings-corba/3.2.6
org.apache.cxf.cxf-rt-bindings-coloc/3.2.6
org.apache.cxf.cxf-core/3.2.6
net.sf.ehcache/2.10.5
org.apache.wss4j.wss4j-ws-security-stax/2.2.2
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2
org.apache.wss4j.wss4j-ws-security-dom/2.2.2
org.apache.wss4j.wss4j-ws-security-common/2.2.2
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
org.apache.aries.jndi.url/1.1.0
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1
Installing bundles:
mvn:com.fasterxml/classmate/1.3.0
mvn:org.javassist/javassist/3.20.0-GA
mvn:net.bytebuddy/byte-buddy/1.6.6
mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.api/1.0.1
mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.cm/1.2.0
mvn:org.apache.aries.blueprint/org.apache.aries.blueprint.core/1.9.0
mvn:org.apache.aries.jmx/org.apache.aries.jmx.blueprint.api/1.2.0
mvn:org.apache.aries.jmx/org.apache.aries.jmx.blueprint.core/1.2.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.api/2.7.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.blueprint/2.7.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.container/2.7.0
mvn:org.apache.aries.jpa.javax.persistence/javax.persistence_2.1/2.7.0
mvn:org.apache.aries.jpa/org.apache.aries.jpa.support/2.7.0
mvn:org.apache.aries.transaction/org.apache.aries.transaction.blueprint/1.1.1
mvn:org.apache.aries.transaction/org.apache.aries.transaction.blueprint/2.2.0
mvn:org.apache.karaf.bundle/org.apache.karaf.bundle.blueprintstate/4.2.2-SNAPSHOT
mvn:org.apache.karaf.deployer/org.apache.karaf.deployer.blueprint/4.2.2-SNAPSHOT
mvn:org.apache.karaf.jaas.blueprint/org.apache.karaf.jaas.blueprint.config/4.2.2-SNAPSHOT
mvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.core/4.2.2-SNAPSHOT
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.antlr/2.7.7_5
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.c3p0/0.9.5.2_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.cglib/3.2.4_1
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.dom4j/1.6.1_5
mvn:org.eclipse.jetty/jetty-http/9.4.11.v20180605
mvn:org.hibernate.common/hibernate-commons-annotations/5.0.1.Final
mvn:org.hibernate/hibernate-core/5.2.9.Final
mvn:org.hibernate/hibernate-osgi/5.2.9.Final
mvn:org.jboss/jandex/2.0.3.Final
mvn:org.jboss.logging/jboss-logging/3.3.0.Final
mvn:org.ops4j.pax.jdbc/pax-jdbc-pool-c3p0/1.3.0
mvn:org.postgresql/postgresql/9.4.1212.jre7
Refreshing bundles:
net.sf.ehcache/2.10.5 (Should be wired to: org.hibernate.core/5.2.9.Final
(through [net.sf.ehcache/2.10.5] osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=org.hibernate)"))
org.apache.aries.jndi.url/1.1.0 (Should be wired to:
org.apache.aries.blueprint.api/1.0.1 (through [org.apache.aries.jndi.url/1.1.0]
osgi.wiring.package; resolution:=optional;
filter:="(&(osgi.wiring.package=org.osgi.service.blueprint.container)(version>=1.0.0)(!(version>=2.0.0)))"))
org.apache.cxf.cxf-core/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-bindings-coloc/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-bindings-corba/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-bindings-soap/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-bindings-xml/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-databinding-aegis/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-databinding-jaxb/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-features-clustering/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-features-logging/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-features-metrics/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-features-throttling/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-frontend-jaxrs/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-frontend-jaxws/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-frontend-js/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-frontend-simple/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-javascript/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-management/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-rs-client/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-rs-extension-providers/3.2.6 (Wired to
org.apache.cxf.cxf-rt-databinding-aegis/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-rs-extension-search/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-rs-json-basic/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-rs-service-description/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-security/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-security-saml/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-transports-http/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-transports-jms/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-transports-local/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-transports-udp/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.cxf.cxf-rt-ws-addr/3.2.6 (Wired to org.apache.cxf.cxf-core/3.2.6
which is being refreshed)
org.apache.cxf.cxf-rt-ws-mex/3.2.6 (Wired to org.apache.cxf.cxf-core/3.2.6
which is being refreshed)
org.apache.cxf.cxf-rt-ws-policy/3.2.6 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.cxf.cxf-rt-ws-rm/3.2.6 (Wired to org.apache.cxf.cxf-core/3.2.6
which is being refreshed)
org.apache.cxf.cxf-rt-ws-security/3.2.6 (Wired to net.sf.ehcache/2.10.5
which is being refreshed)
org.apache.cxf.cxf-rt-wsdl/3.2.6 (Wired to org.apache.cxf.cxf-core/3.2.6
which is being refreshed)
org.apache.cxf.karaf.cxf-karaf-commands/3.2.6 (Wired to
org.apache.cxf.cxf-core/3.2.6 which is being refreshed)
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 (Should be
wired to: org.apache.aries.jpa.javax.persistence_2.1/2.7.0 (through
[org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(osgi.wiring.package=javax.persistence)"))
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
(Wired to org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which
is being refreshed)
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 (Should be wired
to: org.apache.servicemix.bundles.cglib/3.2.4.1 (through
[org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1]
osgi.wiring.package; resolution:=optional;
filter:="(&(osgi.wiring.package=net.sf.cglib.beans)(version>=3.0.0)(!(version>=4.0.0)))"))
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1 (Wired
to org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1 (Wired to
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1 which is being
refreshed)
org.apache.wss4j.wss4j-ws-security-common/2.2.2 (Wired to
net.sf.ehcache/2.10.5 which is being refreshed)
org.apache.wss4j.wss4j-ws-security-dom/2.2.2 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.apache.wss4j.wss4j-ws-security-stax/2.2.2 (Wired to
org.apache.wss4j.wss4j-ws-security-common/2.2.2 which is being refreshed)
org.jboss.weld.osgi-bundle/2.4.5.Final (Should be wired to:
org.jboss.logging.jboss-logging/3.3.0.Final (through
[org.jboss.weld.osgi-bundle/2.4.5.Final] osgi.wiring.package;
filter:="(&(osgi.wiring.package=org.jboss.logging)(version>=3.2.0)(!(version>=4.0.0)))"),
org.apache.aries.jpa.javax.persistence_2.1/2.7.0 (through
[org.jboss.weld.osgi-bundle/2.4.5.Final] osgi.wiring.package;
resolution:=optional; filter:="(osgi.wiring.package=javax.persistence)"))
org.ops4j.pax.cdi.weld/1.0.0 (Wired to
org.jboss.weld.osgi-bundle/2.4.5.Final which is being refreshed)
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1 (Should be wired to:
org.apache.aries.jpa.javax.persistence_2.1/2.7.0 (through
[org.ops4j.pax.logging.pax-logging-log4j2/1.10.1] osgi.wiring.package;
resolution:=optional; filter:="(osgi.wiring.package=javax.persistence)"))
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0 (Wired to
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1 which is being
refreshed)
Starting bundles:
org.ops4j.pax.logging.pax-logging-log4j2/1.10.1
org.apache.aries.blueprint.api/1.0.1
org.apache.aries.blueprint.core/1.9.0
org.apache.aries.blueprint.cm/1.2.0
org.apache.karaf.deployer.blueprint/4.2.2.SNAPSHOT
org.apache.aries.jpa.api/2.7.0
org.apache.aries.jpa.support/2.7.0
org.apache.servicemix.bundles.spring-core/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-beans/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-aop/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-expression/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-tx/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-jdbc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-oxm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-web/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-orm/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-context-support/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc/4.3.18.RELEASE_1
org.apache.servicemix.bundles.spring-webmvc-portlet/4.3.18.RELEASE_1
org.apache.aries.jmx.blueprint.api/1.2.0
org.apache.aries.jmx.blueprint.core/1.2.0
org.apache.servicemix.bundles.spring-jms/4.3.18.RELEASE_1
org.apache.aries.jpa.container/2.7.0
org.apache.wss4j.wss4j-ws-security-common/2.2.2
org.apache.wss4j.wss4j-ws-security-stax/2.2.2
org.apache.wss4j.wss4j-ws-security-policy-stax/2.2.2
org.apache.aries.jndi.url/1.1.0
org.apache.servicemix.bundles.spring-websocket/4.3.18.RELEASE_1
org.apache.aries.jpa.blueprint/2.7.0
org.apache.karaf.jaas.blueprint.config/4.2.2.SNAPSHOT
org.apache.wss4j.wss4j-ws-security-dom/2.2.2
org.apache.karaf.bundle.blueprintstate/4.2.2.SNAPSHOT
org.apache.cxf.cxf-rt-ws-policy/3.2.6
org.apache.cxf.cxf-rt-transports-http/3.2.6
org.apache.cxf.cxf-rt-frontend-jaxrs/3.2.6
org.apache.cxf.cxf-rt-rs-client/3.2.6
org.apache.cxf.cxf-rt-features-metrics/3.2.6
org.apache.cxf.cxf-rt-bindings-soap/3.2.6
org.apache.cxf.cxf-rt-databinding-aegis/3.2.6
org.apache.cxf.cxf-rt-features-clustering/3.2.6
net.sf.ehcache/2.10.5
org.apache.cxf.cxf-rt-bindings-xml/3.2.6
org.apache.cxf.cxf-rt-databinding-jaxb/3.2.6
org.apache.cxf.cxf-rt-frontend-simple/3.2.6
org.apache.cxf.cxf-rt-frontend-jaxws/3.2.6
org.apache.cxf.cxf-rt-security/3.2.6
org.apache.cxf.cxf-rt-security-saml/3.2.6
org.apache.cxf.cxf-rt-ws-addr/3.2.6
org.apache.cxf.cxf-rt-ws-mex/3.2.6
org.apache.cxf.cxf-rt-ws-security/3.2.6
org.apache.cxf.cxf-rt-transports-http-jetty/3.2.6
org.apache.cxf.cxf-rt-rs-json-basic/3.2.6
org.apache.cxf.cxf-rt-rs-extension-providers/3.2.6
org.apache.cxf.cxf-rt-management/3.2.6
org.apache.cxf.cxf-rt-ws-rm/3.2.6
org.apache.cxf.cxf-rt-features-logging/3.2.6
org.apache.cxf.cxf-rt-javascript/3.2.6
org.apache.cxf.cxf-rt-rs-extension-search/3.2.6
org.apache.cxf.cxf-rt-bindings-corba/3.2.6
org.apache.cxf.cxf-rt-bindings-coloc/3.2.6
org.apache.cxf.cxf-rt-transports-jms/3.2.6
org.apache.cxf.karaf.cxf-karaf-commands/3.2.6
org.apache.cxf.cxf-rt-frontend-js/3.2.6
org.apache.cxf.cxf-rt-features-throttling/3.2.6
org.apache.cxf.cxf-rt-transports-local/3.2.6
org.apache.cxf.cxf-rt-transports-udp/3.2.6
org.apache.cxf.cxf-rt-rs-service-description/3.2.6
org.apache.cxf.cxf-core/3.2.6
org.apache.cxf.cxf-rt-wsdl/3.2.6
org.apache.karaf.jdbc.core/4.2.2.SNAPSHOT
org.apache.aries.jpa.javax.persistence_2.1/2.7.0
org.jboss.logging.jboss-logging/3.3.0.Final
org.jboss.weld.osgi-bundle/2.4.5.Final
org.apache.servicemix.bundles.c3p0/0.9.5.2_1
org.ops4j.pax.cdi.weld/1.0.0
org.ops4j.pax.jdbc.pool.c3p0/1.3.0
com.fasterxml.classmate/1.3.0
org.apache.servicemix.bundles.dom4j/1.6.1.5
org.ops4j.pax.transx.pax-transx-tm-geronimo/0.4.0
org.apache.aries.transaction.blueprint/1.1.1
org.apache.servicemix.bundles.antlr/2.7.7.5
org.postgresql.jdbc41/9.4.1212.jre7
javassist/3.20.0.GA
org.jboss.jandex/2.0.3.Final
net.bytebuddy.byte-buddy/1.6.6
org.hibernate.common.hibernate-commons-annotations/5.0.1.Final
org.hibernate.core/5.2.9.Final
org.hibernate.osgi/5.2.9.Final
org.apache.aries.transaction.blueprint/2.2.0
org.apache.servicemix.bundles.cglib/3.2.4.1
Done.
karaf@root()> feature:install -v my-infrastructure-requirements-jms
Adding features: my-infrastructure-requirements-jms/[2.0.0,2.0.0]
^C~ # Fail here - waiting, but no return
karaf@root()> feature:info my-infrastructure-requirements-jms
Feature my-infrastructure-requirements-jms 2.0.0
Feature has no configuration
Feature configuration files:
/etc/org.apache.servicemix.activemq.service.cfg
Feature depends on:
aries-blueprint-spring 0.0.0
shell-compat [4.2.2, 5)
activemq-broker [5.15.7, 6)
activemq-cf [5.15.7, 6)
activemq-blueprint [5.15.7, 6)
jms [4.2.2, 5)
camel [2.23.0, 3)
camel-spring [2.23.0, 3)
camel-jms [2.23.0, 3)
camel-blueprint [2.23.0, 3)
camel-cxf [2.23.0, 3)
camel-jpa [2.23.0, 3)
pax-jms-activemq [1.0.2, 2)
Feature contains followed bundles:
mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.camel/7.1.0-SNAPSHOT
mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.service/7.1.0-SNAPSHOT
Feature has no conditionals.
karaf@root()> feature:install aries-blueprint-spring
^C~ # Fail here - after first waiting, no additional feature is possible to
install
karaf@root()>