ShareThis
martes, 13 de febrero de 2024
Fichas Singapur
¡Hola a todos! Para aquellos padres que buscan fichas del método Singapur, 1️⃣🔟para las clases de matemáticas y math ➕➖➗✖️que las piden en segundo y tercero de primaria, las estoy fabricando. Cada ficha la entrego marcada con el nombre de tu hij@ y con las convenciones de colores y denominación que pidan, en bolsitas separadas también marcadas para que las puedan guardar más fácil. Más información aqui
Estas son las fichas utilizadas en el colegio Nueva Inglaterra (New England School) en Bogotá, entre otros colegios.
¿En qué consiste el método Singapur?
El método Singapur es una metodología centrada en el aprendizaje de las matemáticas que busca cambiar la forma de enseñar tradicional por un nuevo método que fomente el aprendizaje, teniendo como protagonista al alumno y partiendo de lo concreto hasta llegar al conocimiento de lo abstracto. Se basa en la resolución de problemas mediante el uso de materiales y trabajando de forma conjunta con los compañeros.
Este método ha mostrado buenos resultados y está siendo utilizado en diferentes países, incluido Colombia, por un amplio número de alumnos, puesto que resulta motivador y favorece el aprendizaje y la comprensión de las matemáticas.
sábado, 27 de enero de 2024
Creador de tarjetas para niños enfermos
Te invito a usar tarjetasdevida.com para enviar tarjetas a niños enfermos. Si lo deseas, un grupo de voluntarios que periódicamente realiza visitas, puede imprimirla y entregarla personalmente a niños y niñas en el pabellón de pediatria del hospital Universitario San Ignacio HUSI en Bogotá, Colombia.
Anímate y envía un mensaje de esperanza a alguien que lo necesita.
sábado, 14 de mayo de 2022
Solución económica para montar su aplicación
AWS, Azure o Google son las soluciones habituales que se escuchan de alternativas en la nube para montaje de aplicaciones.
En este post quiero compartirles acerca de Digital Ocean la cual es una excelente opción para desarrolladores o Start Ups que ofrece máquinas virtuales (Droplets) desde 5US mensuales. Con este cupón puede obtener 100US gratis para empezar.
En este post quiero compartirles acerca de Digital Ocean la cual es una excelente opción para desarrolladores o Start Ups que ofrece máquinas virtuales (Droplets) desde 5US mensuales. Con este cupón puede obtener 100US gratis para empezar.
Etiquetas:
descuento,
Digital Ocean,
hosting,
nube
sábado, 9 de diciembre de 2017
Buscador de precios de productos en supermercados en Colombia
Les comparto este nuevo servicio de educonti.com que brinda un buscador de productos en supermercados y tiendas colombianas sobre los cuales se tienen muestras de precios de productos representativos.
No se si les ha pasado pero a mi me suele suceder que soy bombardeado permamentemente por publicidad que indica que hay productos en promoción pero es dificil saber si es una buena oferta o no sin tener precios de referencia contra los cuales comparar. Navegando en internet me encontre con este artículo que muestra como pueden haber diferencias de precios significativas entre productos comparables más aún si se cuenta con el código EAN del mismo.
Dinero realizó otra comparación de 10 productos básicos de la canasta familiar (marcas propias) en D1, Olimpica, Exito, ARA y Justo y Bueno, realizando los cálculos necesarios para hacer comparables productos en diferentes presentaciones en función del tamaño o el peso.
No se si les ha pasado pero a mi me suele suceder que soy bombardeado permamentemente por publicidad que indica que hay productos en promoción pero es dificil saber si es una buena oferta o no sin tener precios de referencia contra los cuales comparar. Navegando en internet me encontre con este artículo que muestra como pueden haber diferencias de precios significativas entre productos comparables más aún si se cuenta con el código EAN del mismo.
Dinero realizó otra comparación de 10 productos básicos de la canasta familiar (marcas propias) en D1, Olimpica, Exito, ARA y Justo y Bueno, realizando los cálculos necesarios para hacer comparables productos en diferentes presentaciones en función del tamaño o el peso.
viernes, 1 de diciembre de 2017
Docker
docker ps
https://askubuntu.com/questions/505506/how-to-get-bash-or-ssh-into-a-running-container-in-background-mode
Put
https://askubuntu.com/questions/505506/how-to-get-bash-or-ssh-into-a-running-container-in-background-mode
Put
docker-ssh
file in your $PATH
with the following contents#!/bin/bash -xe
# docker container id or name might be given as a parameter
CONTAINER=$1
if [[ "$CONTAINER" == "" ]]; then
# if no id given simply just connect to the first running container
CONTAINER=$(docker ps | grep -Eo "^[0-9a-z]{8,}\b")
fi
# start an interactive bash inside the container
# note some containers don't have bash, then try: ash (alpine), or simply sh
# the -l at the end stands for login shell that reads profile files (read man)
docker exec -i -t $CONTAINER bash -l
Tips y comandos Linux
Vi reemplazar (global)
:%s/pattern/replace/
Mysql MariaDB
Solo respaldar funciones y stored procs
mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt > outputfile.sql
:%s/javeonline/javeservicios/
remover linea
SET @saved_cs_client = @@character_set_client *
SET latin1 COLLATE latin1_swedish_ci POR SET utf8 COLLATE utf8_general_ci
cat javeonlinestruct***.sql | grep -v saved_cs_client | grep -v saved_sql_mode > javeservicios.sql
SHOW GRANTS FOR CURRENT_USER()
show grants for tao@localhost;
show grants for current_user();
+--------------------------------------------------------------------------------------------------------------+
| Grants for xxxx@% |
+--------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'xxxx'@'%' IDENTIFIED BY PASSWORD 'scxds' |
| GRANT ALL PRIVILEGES ON `xxx`.* TO 'xxx'@'%' |
+--------------------------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)
The current conditions on the use of stored functions in MySQL 5.5 can be summarized as follows. [...] To create or alter a stored function, you must have the SUPER privilege, in addition to the CREATE ROUTINE or ALTER ROUTINE privilege that is normally required.
mysql> GRANT SUPER ON *.* TO user@'localhost' IDENTIFIED BY 'password';
After executing above code, end it with:mysql> FLUSH PRIVILEGES;
You should do in on . because SUPER is not the privilege that applies just to one database, it's global.
https://dba.stackexchange.com/questions/124066/is-there-any-danger-in-granting-super-privileges-to-a-user
REVOKE SUPER ON *.* FROM 'alexander'@'localhost';
mysqldump -h xxx -u xxxx -pxxx javeonline --routines | sed 's/javeonline/javeservicios/g' | sed 's/DEFINER=[^*]*\*/\*/g' > "ruta/javeonlinestruct.$(date +%F_%R).sql"
-----
select min(year), max(year) as max_year, Carrier, count(*) as cnt,
sum(if(ArrDelayMinutes>30, 1, 0)) as flights_delayed,
round(sum(if(ArrDelayMinutes>30, 1, 0))/count(*),2) as rate
FROM ontime
WHERE
DayOfWeek not in (6,7)
and OriginState not in ('AK', 'HI', 'PR', 'VI')
and DestState not in ('AK', 'HI', 'PR', 'VI')
GROUP by carrier HAVING cnt > 100000 and max_year > '1990'
ORDER by rate DESC, cnt desc
LIMIT 10
The query will find the total number of delayed flights per each airline. In addition, the query will calculate the smart “ontime” rating, taking into consideration the number of flights (we do not want to compare smaller air carriers with the large ones, and we want to exclude the older airlines who are not in business anymore).
The main reason I’ve chosen this query is that it is hard to optimize it in MySQL. All conditions in the “where” clause will only filter out ~70% of rows. I’ve done a basic calculation:
mysql> select count(*) FROM ontime WHERE DayOfWeek not in (6,7) and OriginState not in ('AK', 'HI', 'PR', 'VI') and DestState not in ('AK', 'HI', 'PR', 'VI');
+-----------+
| count(*) |
+-----------+
| 108776741 |
+-----------+
mysql> select count(*) FROM ontime;
+-----------+
| count(*) |
+-----------+
| 152657276 |
+-----------+
mysql> select round((108776741/152657276)*100, 2);
+-------------------------------------+
| round((108776741/152657276)*100, 2) |
+-------------------------------------+
| 71.26 |
+-------------------------------------+
What is the query response time in MySQL:
mysql> select min(yearD), max(yearD) as max_year, Carrier, count(*) as cnt, sum(if(ArrDelayMinutes>30, 1, 0)) as flights_delayed, round(sum(if(ArrDelayMinutes>30, 1, 0))/count(*),2) as rate FROM ontime_part WHERE DayOfWeek not in (6,7) and OriginState not in ('AK', 'HI', 'PR', 'VI') and DestState not in ('AK', 'HI', 'PR', 'VI') GROUP by carrier HAVING cnt > 1000 and max_year > '1990' ORDER by rate DESC, cnt desc LIMIT 10;
+------------+----------+---------+----------+-----------------+------+
| min(yearD) | max_year | Carrier | cnt | flights_delayed | rate |
+------------+----------+---------+----------+-----------------+------+
| 2003 | 2013 | EV | 2962008 | 464264 | 0.16 |
| 2003 | 2013 | B6 | 1237400 | 187863 | 0.15 |
| 2006 | 2011 | XE | 1615266 | 230977 | 0.14 |
| 2003 | 2005 | DH | 501056 | 69833 | 0.14 |
| 2001 | 2013 | MQ | 4518106 | 605698 | 0.13 |
| 2003 | 2013 | FL | 1692887 | 212069 | 0.13 |
| 2004 | 2010 | OH | 1307404 | 175258 | 0.13 |
| 2006 | 2013 | YV | 1121025 | 143597 | 0.13 |
| 2003 | 2006 | RU | 1007248 | 126733 | 0.13 |
| 1988 | 2013 | UA | 10717383 | 1327196 | 0.12 |
+------------+----------+---------+----------+-----------------+------+
10 rows in set (19 min 16.58 sec)
19 minutes is definitely not great.
https://dzone.com/articles/how-apache-spark-makes-your-slow-mysql-queries-10x
I cannot speak to why the query is not working. That would seem to be a data issue -- all the rows match.
But, there is a better way to write the query:
This is much more efficient because the intermediate table does not
need to be materialized and the database can make use of appropriate
indexes on insgnias_user . |
|
Some advice: Find a charset. I recommend
UTF8
and a collation: I recommend utf8_general_ci
. And use those consistantly everywhere.
----
Establecer el locale en UTF 8
English locale
LANG=en_US.utf8
# Allow only root execution if [ `id|sed -e s/uid=//g -e s/\(.*//g` -ne 0 ]; then echo "This script requires root privileges" exit 1 fi
# Disabling SELinux if enabled if [ -f "/usr/sbin/getenforce" ] && [ `id -u` = 0 ] ; then selinux_status=`/usr/sbin/getenforce` /usr/sbin/setenforce 0 2> /dev/null fi
elif [ "x$1" = "xstatus" ]; then if [ "x$2" = "xmysql" ]; then if test -x $MYSQL_SCRIPT; then $MYSQL_SCRIPT status sleep 2 fi elif [ "x$2" = "xmongodb" ]; then if test -x $MONGODB_SCRIPT; then $MONGODB_SCRIPT status fi elif [ "x$2" = "xingres" ]; then if test -x $INGRES_SCRIPT; then $INGRES_SCRIPT status fi elif [ "x$2" = "xpostgresql" ]; then
# Checking for errors for e in $VARNISH_ERROR $PHPFPM_ERROR $APACHE_ERROR $NGINX_ERROR $MYSQL_ERROR $MONGODB_ERROR $SUBVERSION_ERROR $SOLR_ERROR $ELASTICSEARCH_ERROR $TOMCAT_ERROR $REDIS_ERROR $RESIN_ERROR $MEMCACHED_ERROR $INGRES_ERROR $LIBREOFFICE_ERROR $LUCENE_ERROR $ZOPE_ERROR $POSTGRESQL_ERROR $THIRD_ERROR $NAGIOS_ERROR $RABBITMQ_ERROR $ACTIVEMQ_ERROR $JETTY_ERROR $JBOSS_ERROR $WILDFLY_ERROR $HYPERSONIC_ERROR; do if [ $e -gt 0 ]; then ERROR=$e fi done
# Restoring SELinux if [ -f "/usr/sbin/getenforce" ] && [ `id -u` = 0 ] ; then /usr/sbin/setenforce $selinux_status 2> /dev/null fi
FUSE
list
bundle:diag
osgi:list
config:edit org.ops4j.pax.logging
config:propappend log4j.appender.stdout.append true
config:update
log:display
log:clear
start 432
features:list | grep jetty
features:install cxf features:install cxf-rt-transports-http-jetty features:install camel-http features:install camel-servlet features:install http4 features:install camel-http4 features:install jetty features:install camel-jetty features:install camel-swagger-java features:install camel-xmljson
JBossFuse:karaf@root> features:info camel-xmljson Description of camel-xmljson 2.17.0.redhat-630187 feature ---------------------------------------------------------------- Before using this feature make sure to install this bundle first manually: mvn:xom/xom/1.2.7.redhat-4 ---------------------------------------------------------------- Feature has no configuration Feature has no configuration files Feature depends on: camel-core 2.17.0.redhat-630187 Feature contains followed bundles: mvn:commons-beanutils/commons-beanutils/1.9.2.redhat-1 start-level=50 mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.oro/2.0.8_6 start-level=50 mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.ezmorph/1.0.6_1 start-level=50 mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.json-lib/2.4_1 start-level=50 mvn:commons-lang/commons-lang/2.6.0.redhat-5 start-level=50 mvn:commons-collections/commons-collections/3.2.2.redhat-2 start-level=50 mvn:org.apache.camel/camel-xmljson/2.17.0.redhat-630187 start-level=50 Feature has no conditionals.
JBossFuse:karaf@root> features:list State Version Name Repository Description [uninstalled] [6.3.0.redhat-187 ] esb-commands-startup fuse-6.3.0.redhat-187 [uninstalled] [6.3.0.redhat-187 ] esb-commands fuse-6.3.0.redhat-187 [uninstalled] [1.3.23_2 ] saaj fuse-6.3.0.redhat-187 [installed ] [0.0.0 ] pax-url-classpath fuse-6.3.0.redhat-187 [installed ] [1.2.0.redhat-630187 ] patch-core patch-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] patch patch-1.2.0.redhat-630187 [installed ] [1.3.0 ] transaction karaf-enterprise-2.4.0.redhat-630187 OSGi Transaction Manager [uninstalled] [3.1.1 ] connector karaf-enterprise-2.4.0.redhat-630187 OSGi support for JCA Connector 1.6 [uninstalled] [1.0.2 ] jpa karaf-enterprise-2.4.0.redhat-630187 OSGi Persistence Container 2.0 [uninstalled] [2.3.0 ] openjpa karaf-enterprise-2.4.0.redhat-630187 Apache OpenJPA 2.3.x persistence engine support [uninstalled] [4.2.22.Final-redhat-1] hibernate karaf-enterprise-2.4.0.redhat-630187 Hibernate 4.2.x JPA persistence engine support [uninstalled] [4.2.22.Final-redhat-1] hibernate-envers karaf-enterprise-2.4.0.redhat-630187 Hibernate Envers 4.2.x [uninstalled] [5.2.4.Final ] hibernate-validator karaf-enterprise-2.4.0.redhat-630187 Hibernate Validator support [uninstalled] [1.0.0 ] jndi karaf-enterprise-2.4.0.redhat-630187 OSGi Service Registry JNDI access [uninstalled] [2.4.0.redhat-630187 ] jdbc karaf-enterprise-2.4.0.redhat-630187 JDBC service and commands [installed ] [2.4.0.redhat-630187 ] jms karaf-enterprise-2.4.0.redhat-630187 JMS service and commands [uninstalled] [2.3.2.Final ] weld karaf-enterprise-2.4.0.redhat-630187 JBoss Weld CDI container support [uninstalled] [1.0.0 ] application-without-isolation karaf-enterprise-2.4.0.redhat-630187 Provide EBA archive support [installed ] [2.7.0 ] xml-specs-api camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-core camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-catalog camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-blueprint camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-spring camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-scr camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ahc camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ahc-ws camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-amqp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-apns camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-atmosphere-websocket camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-atom camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-avro camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-aws camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-bam camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-base64 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-bean-validator camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-beanio camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-beanstalk camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-barcode camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-bindy camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-boon camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-box camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-braintree camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-cache camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-cassandraql camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-castor camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-cdi camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-chunk camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-cmis camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-coap camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-cometd camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-context camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-couchdb camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-crypto camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-csv camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-cxf camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-disruptor camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-dns camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-dozer camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-dropbox camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-elsql camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-elasticsearch camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-etcd camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-eventadmin camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-exec camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-facebook camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-flatpack camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-fop camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-freemarker camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-ftp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ganglia camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-geocoder camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-git camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-github camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-google-calendar camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-google-drive camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-google-mail camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-groovy camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-gson camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-guava-eventbus camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-guice camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hawtdb camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hazelcast camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hbase camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hdfs2 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hipchat camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hessian camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-hl7 camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-http camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-http4 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ibatis camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ical camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-infinispan camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-irc camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jackson camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jacksonxml camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jasypt camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jaxb camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jbpm camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jcache camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jclouds camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jcr camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jdbc camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jetty9 camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jetty camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jgroups camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jibx camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jing camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jms camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-jmx camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jolt camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-josql camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jpa camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jsch camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jsonpath camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jt400 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-juel camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-jxpath camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-kafka camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-kestrel camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-krati camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-kubernetes camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ldap camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-linkedin camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-leveldb camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-lucene camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-lzf camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-mail camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-metrics camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mina camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mina2 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mllp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mongodb camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mongodb-gridfs camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mqtt camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-msv camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mustache camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mvel camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-mybatis camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-nagios camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-nats camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-netty camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-netty-http camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-netty4 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-netty4-http camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-ognl camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-olingo2 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-openshift camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-optaplanner camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-paho camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-paxlogging camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-pdf camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-pgevent camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-printer camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-protobuf camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-quartz camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-quartz2 camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-quickfix camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-rabbitmq camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-restlet camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-rmi camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-routebox camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-rss camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-rx camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-sap-netweaver camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-salesforce camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-saxon camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-scala camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-schematron camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-script-jruby camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-script-javascript camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-script-groovy camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-script camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-servicenow camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-servlet camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-servletlistener camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-shiro camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-sip camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-sjms camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-slack camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-smpp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-snakeyaml camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-snmp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-soap camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-solr camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-spark-rest camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-splunk camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-spring-batch camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-spring-javaconfig camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-spring-ldap camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-spring-redis camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-spring-security camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-spring-ws camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-sql camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-ssh camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-stax camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-stream camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-stomp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-string-template camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-swagger camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-swagger-java camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-syslog camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-tagsoup camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-tarfile camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-test camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-test-spring camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-twitter camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-undertow camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-univocity-parsers camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-urlrewrite camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-vertx camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-velocity camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-weather camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-websocket camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-xmlbeans camel-2.17.0.redhat-630187 [installed ] [2.17.0.redhat-630187 ] camel-xmljson camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-xmlrpc camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-xmlsecurity camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-xmpp camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-xstream camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-yammer camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-zipfile camel-2.17.0.redhat-630187 [uninstalled] [2.17.0.redhat-630187 ] camel-zookeeper camel-2.17.0.redhat-630187 [uninstalled] [1.9.1.redhat-001 ] jclouds-guice jclouds-1.9.1.redhat-001 Jclouds - Google Guice [uninstalled] [1.9.1.redhat-001 ] jclouds jclouds-1.9.1.redhat-001 jclouds [uninstalled] [1.9.1.redhat-001 ] jclouds-blobstore jclouds-1.9.1.redhat-001 jclouds Blobstore [uninstalled] [1.9.1.redhat-001 ] jclouds-compute jclouds-1.9.1.redhat-001 jclouds Compute [uninstalled] [1.9.1.redhat-001 ] jclouds-api-atmos jclouds-1.9.1.redhat-001 jclouds - API - Atmos [uninstalled] [1.9.1.redhat-001 ] jclouds-api-filesystem jclouds-1.9.1.redhat-001 jclouds - API - FileSystem [uninstalled] [1.9.1.redhat-001 ] jclouds-api-elasticstack jclouds-1.9.1.redhat-001 jclouds - API - Elasticstack [uninstalled] [1.9.1.redhat-001 ] jclouds-api-byon jclouds-1.9.1.redhat-001 jclouds - API - Byon [uninstalled] [1.9.1.redhat-001 ] jclouds-api-openstack-swift jclouds-1.9.1.redhat-001 jclouds - API - OpenStack Swift [uninstalled] [1.9.1.redhat-001 ] jclouds-api-swift jclouds-1.9.1.redhat-001 jclouds - API - Swift [uninstalled] [1.9.1.redhat-001 ] jclouds-api-openstack-nova jclouds-1.9.1.redhat-001 jclouds - API - OpenStack Nova [uninstalled] [1.9.1.redhat-001 ] jclouds-api-openstack-keystone jclouds-1.9.1.redhat-001 jclouds - API - OpenStack Keystone [uninstalled] [1.9.1.redhat-001 ] jclouds-api-openstack-cinder jclouds-1.9.1.redhat-001 jclouds - API - OpenStack Cinder [uninstalled] [1.9.1.redhat-001 ] jclouds-api-s3 jclouds-1.9.1.redhat-001 S3 API [uninstalled] [1.9.1.redhat-001 ] jclouds-api-sqs jclouds-1.9.1.redhat-001 SQS API [uninstalled] [1.9.1.redhat-001 ] jclouds-api-ec2 jclouds-1.9.1.redhat-001 EC2 API [uninstalled] [1.9.1.redhat-001 ] jclouds-api-cloudstack jclouds-1.9.1.redhat-001 Cloudstack API [uninstalled] [1.9.1.redhat-001 ] jclouds-api-rackspace-cloudidentity jclouds-1.9.1.redhat-001 Rackspace Cloud Identity API [uninstalled] [1.9.1.redhat-001 ] jclouds-api-rackspace-clouddns jclouds-1.9.1.redhat-001 Rackspace Cloud DNS API [uninstalled] [1.9.1.redhat-001 ] jclouds-api-chef jclouds-1.9.1.redhat-001 Jclouds - API - Chef [uninstalled] [1.9.1.redhat-001 ] jclouds-api-sts jclouds-1.9.1.redhat-001 Jclouds - API - STS [uninstalled] [1.9.1.redhat-001 ] jclouds-api-route53 jclouds-1.9.1.redhat-001 Jclouds - API - Route53 [uninstalled] [1.9.1.redhat-001 ] jclouds-api-cloudsigma2 jclouds-1.9.1.redhat-001 jclouds - API - CloudSigma v2 [uninstalled] [1.9.1.redhat-001 ] jclouds-aws-cloudwatch jclouds-1.9.1.redhat-001 Amazon Web Service - Cloudwatch [uninstalled] [1.9.1.redhat-001 ] jclouds-aws-ec2 jclouds-1.9.1.redhat-001 Amazon Web Service - EC2 [uninstalled] [1.9.1.redhat-001 ] jclouds-aws-route53 jclouds-1.9.1.redhat-001 Amazon Web Service - Route 53 [uninstalled] [1.9.1.redhat-001 ] jclouds-aws-s3 jclouds-1.9.1.redhat-001 Amazon Web Service - S3 [uninstalled] [1.9.1.redhat-001 ] jclouds-aws-sqs jclouds-1.9.1.redhat-001 Amazon Web Service - SQS [uninstalled] [1.9.1.redhat-001 ] jclouds-aws-sts jclouds-1.9.1.redhat-001 Amazon Web Service - STS [uninstalled] [1.9.1.redhat-001 ] jclouds-azureblob jclouds-1.9.1.redhat-001 Azureblob [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudfiles-uk jclouds-1.9.1.redhat-001 Cloudfiles UK [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudfiles-us jclouds-1.9.1.redhat-001 Cloudfiles US [uninstalled] [1.9.1.redhat-001 ] jclouds-dynect jclouds-1.9.1.redhat-001 DynECT Managed DNS [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudloadbalancers-us jclouds-1.9.1.redhat-001 Cloud Load Balancers US [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudloadbalancers-uk jclouds-1.9.1.redhat-001 Cloud Load Balancers UK [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudservers-us jclouds-1.9.1.redhat-001 Rackspace Cloudservers US [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudservers-uk jclouds-1.9.1.redhat-001 Rackspace Cloudservers UK [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-clouddns-us jclouds-1.9.1.redhat-001 Rackspace Cloud DNS US [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-clouddns-uk jclouds-1.9.1.redhat-001 Rackspace Cloud DNS UK [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudblockstorage-us jclouds-1.9.1.redhat-001 Rackspace Cloud Block Storage US [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudblockstorage-uk jclouds-1.9.1.redhat-001 Rackspace Cloud Block Storage UK [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudfiles-uk jclouds-1.9.1.redhat-001 Rackspace Cloud Files UK [uninstalled] [1.9.1.redhat-001 ] jclouds-rackspace-cloudfiles-us jclouds-1.9.1.redhat-001 Rackspace Cloud Files US [uninstalled] [1.9.1.redhat-001 ] jclouds-elastichosts-lon-b jclouds-1.9.1.redhat-001 Elastichosts Bluesquare London [uninstalled] [1.9.1.redhat-001 ] jclouds-elastichosts-lon-p jclouds-1.9.1.redhat-001 Elastichosts Peer1 London [uninstalled] [1.9.1.redhat-001 ] jclouds-elastichosts-sat-p jclouds-1.9.1.redhat-001 Elastichosts Peer1 San Antonio [uninstalled] [1.9.1.redhat-001 ] jclouds-elastichosts-lax-p jclouds-1.9.1.redhat-001 Elastichosts Peer1 Los Angeles [uninstalled] [1.9.1.redhat-001 ] jclouds-elastichosts-tor-p jclouds-1.9.1.redhat-001 Elastichosts Peer1 Toronto [uninstalled] [1.9.1.redhat-001 ] jclouds-gogrid jclouds-1.9.1.redhat-001 GoGrid [uninstalled] [1.9.1.redhat-001 ] jclouds-go2cloud-jhb1 jclouds-1.9.1.redhat-001 Go2Cloud implementation targeted to Johannesburg1 [uninstalled] [1.9.1.redhat-001 ] jclouds-glesys jclouds-1.9.1.redhat-001 GleSYS [uninstalled] [1.9.1.redhat-001 ] jclouds-hpcloud-objectstorage jclouds-1.9.1.redhat-001 HP Cloud Object Storage [uninstalled] [1.9.1.redhat-001 ] jclouds-hpcloud-compute jclouds-1.9.1.redhat-001 HP Cloud Compute [uninstalled] [1.9.1.redhat-001 ] jclouds-openhosting-east1 jclouds-1.9.1.redhat-001 Open Hosting for East1 [uninstalled] [1.9.1.redhat-001 ] jclouds-serverlove-z1-man jclouds-1.9.1.redhat-001 Serverlove implementation targeted to Manchester [uninstalled] [1.9.1.redhat-001 ] jclouds-skalicloud-sdg-my jclouds-1.9.1.redhat-001 SkaliCloud implementation targeted to Malaysia [uninstalled] [1.9.1.redhat-001 ] jclouds-softlayer jclouds-1.9.1.redhat-001 Components to access SoftLayer [uninstalled] [1.9.1.redhat-001 ] jclouds-digitalocean jclouds-1.9.1.redhat-001 Components to access DigitalOcean [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudsigma2-hnl jclouds-1.9.1.redhat-001 CloudSigma v2 Honolulu [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudsigma2-lvs jclouds-1.9.1.redhat-001 CloudSigma v2 Las Vegas [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudsigma2-sjc jclouds-1.9.1.redhat-001 CloudSigma v2 San Jose [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudsigma2-wdc jclouds-1.9.1.redhat-001 CloudSigma v2 Washington DC [uninstalled] [1.9.1.redhat-001 ] jclouds-cloudsigma2-zrh jclouds-1.9.1.redhat-001 CloudSigma v2 Zurich [uninstalled] [1.9.1.redhat-001 ] jclouds-services jclouds-1.9.1.redhat-001 OSGi Service Factories for jclouds [uninstalled] [1.9.1.redhat-001 ] jclouds-commands jclouds-1.9.1.redhat-001 Karaf Commands for jclouds [uninstalled] [1.9.1.redhat-001 ] jclouds-chef jclouds-1.9.1.redhat-001 jclouds Chef Services and Commands [uninstalled] [1.9.1.redhat-001 ] jclouds-url-handler jclouds-1.9.1.redhat-001 Url Handler for jclouds Blobs [installed ] [3.1.5.redhat-630187 ] cxf-specs cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-jaxb cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-abdera cxf-3.1.5.redhat-630187 [installed ] [2.1.5 ] wss4j cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-core cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-commands cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-wsdl cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-ws-policy cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-ws-addr cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-ws-rm cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-ws-mex cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-ws-security cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-rt-security cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-rt-security-saml cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-http-client cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-http cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-http-jetty cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-http-async cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-http-netty-client cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-http-netty-server cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-bindings-soap cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-jaxws cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-jaxrs cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-rs-security-xml cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-rs-security-sso-saml cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-rs-security-cors cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-rs-security-oauth cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-rs-security-jose cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-rs-security-oauth2 cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-rs-description-swagger2 cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-databinding-aegis cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-databinding-jibx cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-databinding-jaxb cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-databinding-xmlbeans cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-features-clustering cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-features-logging cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-features-throttling cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-features-metrics cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-bindings-corba cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-bindings-coloc cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-bindings-object cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-transports-local cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-transports-jms cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-transports-udp cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-transports-websocket-client cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-transports-websocket-server cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-javascript cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-frontend-javascript cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf-xjc-runtime cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-tools cxf-3.1.5.redhat-630187 [installed ] [3.1.5.redhat-630187 ] cxf cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-sts cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-wsn-api cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-wsn cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-ws-discovery-api cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-ws-discovery cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-bean-validation-core cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-bean-validation cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-management-web cxf-3.1.5.redhat-630187 [uninstalled] [3.1.5.redhat-630187 ] cxf-jaxrs-cdi cxf-3.1.5.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-startup fabric-1.2.0.redhat-630187 [installed ] [2.4.0.redhat-630187 ] karaf fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] jsr-311 fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-zookeeper fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-configadmin fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-agent fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-agent-commands fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-archetype-commands fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-project-deployer fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-web fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-maven-proxy fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-core fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-boot-commands fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-commands fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-zookeeper-commands fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-dosgi fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-camel fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-camel-autotest fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-cxf fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-cxf-registry fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] mq-fabric fabric-1.2.0.redhat-630187 A-MQ broker [uninstalled] [1.2.0.redhat-630187 ] mq-fabric-http-discovery fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] mq-fabric-camel fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] camel-amq fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] activemq-camel fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-groovy fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-groups fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-jaas fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-ssh fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-jclouds fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-kibana fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-eshead fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-log fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-metrics fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-elasticsearch fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-elasticsearch-log-storage fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-elasticsearch-metrics-storage fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] insight-camel fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-ldap-apacheds fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-ldap-jaas fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-git fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-git-server fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] fabric-redirect fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-rest fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-hawtio fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-hawtio-swagger fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-dynamic-jaxb fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-openshift fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-autoscale fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] fabric-vertx fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] jolokia fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] gateway-core fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] gateway-fabric fabric-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] swagger fabric-1.2.0.redhat-630187 [uninstalled] [1.2.0.redhat-630187 ] swagger-java fabric-1.2.0.redhat-630187 [installed ] [1.4.0.redhat-630187 ] hawtio-core hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio hawtio-1.4.0.redhat-630187 [installed ] [1.4.0.redhat-630187 ] hawtio-offline hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-maven-indexer hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-karaf-git hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-git hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-dev-mode hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-simple-example hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-irc-example hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-social-example hawtio-1.4.0.redhat-630187 [installed ] [1.4.0.redhat-630187 ] hawtio-karaf-terminal hawtio-1.4.0.redhat-630187 [installed ] [1.4.0.redhat-630187 ] hawtio-redhat-fuse-branding hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-redhat-amq-branding hawtio-1.4.0.redhat-630187 [uninstalled] [1.4.0.redhat-630187 ] hawtio-fabric8-branding hawtio-1.4.0.redhat-630187 [uninstalled] [1.5.2 ] smooks switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-internal-core switchyard-2.1.0.redhat-630187 [uninstalled] [5.5.1 ] dozer switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] xalan-deps switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-camel-jpa-hibernate switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-amqp switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-atom switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-bean switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-bpel switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-cdi switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-camel switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-camel-cxf switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-file switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-ftp switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-http switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-internal-http switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-jms switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-jpa switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-mail switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-mqtt switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-netty switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quartz switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-rss switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-rest switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-internal-rest switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-sca switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-internal-sca switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-sql switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-soap switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-internal-soap switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-sap switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-bpel-jms-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-bpel-loan-approval switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-bpel-say-hello switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-bpel-simple-correlation switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-bean-service switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-amqp-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-atom-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-file-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-bindy switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-cxf-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-bus-cdi switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-ftp-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-hl7 switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-jaxb switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-jms-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-jpa-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-mail-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-mqtt-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-netty-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-quartz-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-rss-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-service switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-remote-invoker switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-demo-cluster-dealer switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-demo-cluster-credit switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-saxon switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-soap-proxy switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-sql-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-soap-addressing switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-soap-attachment switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-soap-binding-rpc switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-soap-mtom switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-rest-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-transform-datamapper switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-transform-dozer switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-transform-jaxb switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-transform-json switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-transform-smooks switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-transform-xslt switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-validate-xml switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-sap-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-http-binding switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-quickstart-camel-dozer switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-demo-policy-security-basic switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-demo-policy-security-cert switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-demo-security-propagation-jms switchyard-2.1.0.redhat-630187 [uninstalled] [2.1.0.redhat-630187 ] switchyard-demo-policy-transaction switchyard-2.1.0.redhat-630187 [uninstalled] [1.0.0.RC1-redhat-001 ] pax-cdi org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Provide CDI support [uninstalled] [1.0.0.RC1-redhat-001 ] pax-cdi-weld org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Weld CDI 1.2 support [uninstalled] [1.0.0.RC1-redhat-001 ] pax-cdi-web org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Web CDI support [uninstalled] [1.0.0.RC1-redhat-001 ] pax-cdi-web-weld org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Weld Web CDI support [uninstalled] [1.5.1 ] deltaspike-core org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Apache Deltaspike core support [uninstalled] [1.5.1 ] deltaspike-jpa org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Apache Deltaspike jpa support [uninstalled] [1.5.1 ] deltaspike-partial-bean org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Apache Deltaspike partial bean support [uninstalled] [1.5.1 ] deltaspike-data org.ops4j.pax.cdi-1.0.0.RC1-redhat-001 Apache Deltaspike data support [installed ] [9.2.19.v20160908 ] pax-jetty org.ops4j.pax.web-4.3.0.redhat-001 Provide Jetty engine support [uninstalled] [4.3.0.redhat-001 ] pax-jetty-spdy org.ops4j.pax.web-4.3.0.redhat-001 Optional additional feature to run Jetty with SPDY [installed ] [4.3.0.redhat-001 ] pax-http-jetty org.ops4j.pax.web-4.3.0.redhat-001 [installed ] [4.3.0.redhat-001 ] pax-http org.ops4j.pax.web-4.3.0.redhat-001 Implementation of the OSGI HTTP Service [installed ] [4.3.0.redhat-001 ] pax-http-whiteboard org.ops4j.pax.web-4.3.0.redhat-001 Provide HTTP Whiteboard pattern support [installed ] [4.3.0.redhat-001 ] pax-war org.ops4j.pax.web-4.3.0.redhat-001 Provide support of a full WebContainer [uninstalled] [4.3.0.redhat-001 ] pax-http-tomcat org.ops4j.pax.web-4.3.0.redhat-001 Provide Tomcat support [uninstalled] [4.3.0.redhat-001 ] pax-war-tomcat org.ops4j.pax.web-4.3.0.redhat-001 [uninstalled] [1.1 ] jms-spec activemq-core-5.11.0.redhat-630187 JMS spec 1.1 libraries [installed ] [2.0 ] jms-spec activemq-core-5.11.0.redhat-630187 JMS spec 2.0 libraries [uninstalled] [1.1 ] jms-spec-dep activemq-core-5.11.0.redhat-630187 JMS spec 1.1 dependency [installed ] [2.0 ] jms-spec-dep activemq-core-5.11.0.redhat-630187 JMS spec 2.0 dependency [installed ] [5.11.0.redhat-630187 ] activemq-client activemq-core-5.11.0.redhat-630187 ActiveMQ client libraries [installed ] [5.11.0.redhat-630187 ] activemq activemq-core-5.11.0.redhat-630187 ActiveMQ broker libraries [uninstalled] [5.11.0.redhat-630187 ] activemq-jms-spec-dep activemq-core-5.11.0.redhat-630187 ActiveMQ broker libraries [installed ] [1.2.1 ] spring-dm spring-2.4.0.redhat-630187 Spring DM support [uninstalled] [1.2.1 ] spring-dm-web spring-2.4.0.redhat-630187 Spring DM Web support [installed ] [3.2.16.RELEASE_1 ] spring spring-2.4.0.redhat-630187 Spring 3.2.x support [uninstalled] [3.2.16.RELEASE_1 ] spring-aspects spring-2.4.0.redhat-630187 Spring 3.2.x AOP support [uninstalled] [3.2.16.RELEASE_1 ] spring-instrument spring-2.4.0.redhat-630187 Spring 3.2.x Instrument support [uninstalled] [3.2.16.RELEASE_1 ] spring-jdbc spring-2.4.0.redhat-630187 Spring 3.2.x JDBC support [installed ] [3.2.16.RELEASE_1 ] spring-jms spring-2.4.0.redhat-630187 Spring 3.2.x JMS support [uninstalled] [3.2.16.RELEASE_1 ] spring-test spring-2.4.0.redhat-630187 Spring 3.2.x Test support [uninstalled] [3.2.16.RELEASE_1 ] spring-orm spring-2.4.0.redhat-630187 Spring 3.2.x ORM support [uninstalled] [3.2.16.RELEASE_1 ] spring-oxm spring-2.4.0.redhat-630187 Spring 3.2.x OXM support [installed ] [3.2.16.RELEASE_1 ] spring-tx spring-2.4.0.redhat-630187 Spring 3.2.x Transaction (TX) support [uninstalled] [3.2.16.RELEASE_1 ] spring-web spring-2.4.0.redhat-630187 Spring 3.2.x Web support [uninstalled] [3.2.16.RELEASE_1 ] spring-web-portlet spring-2.4.0.redhat-630187 Spring 3.2.x Web Portlet support [uninstalled] [3.2.8.RELEASE ] spring-security spring-2.4.0.redhat-630187 Spring Security 3.2.x support [uninstalled] [2.4.0.redhat-630187 ] service-security karaf-2.4.0.redhat-630187 Services Security for Karaf [uninstalled] [2.4.0.redhat-630187 ] karaf-framework karaf-2.4.0.redhat-630187 Karaf core feature [installed ] [2.4.0.redhat-630187 ] aries-proxy karaf-2.4.0.redhat-630187 Aries Proxy [installed ] [2.4.0.redhat-630187 ] aries-blueprint karaf-2.4.0.redhat-630187 Aries Blueprint [uninstalled] [2.4.0.redhat-630187 ] features karaf-2.4.0.redhat-630187 Karaf Features support [uninstalled] [2.4.0.redhat-630187 ] admin karaf-2.4.0.redhat-630187 Child instance administration [uninstalled] [2.4.0.redhat-630187 ] diagnostic karaf-2.4.0.redhat-630187 Diagnostic support [installed ] [2.4.0.redhat-630187 ] shell karaf-2.4.0.redhat-630187 Karaf Shell [installed ] [2.4.0.redhat-630187 ] deployer karaf-2.4.0.redhat-630187 Karaf Deployer [uninstalled] [2.4.0.redhat-630187 ] wrapper karaf-2.4.0.redhat-630187 Provide OS integration [uninstalled] [2.4.0.redhat-630187 ] service-wrapper karaf-2.4.0.redhat-630187 Provide OS integration (alias to wrapper feature) [uninstalled] [2.4.0.redhat-630187 ] obr karaf-2.4.0.redhat-630187 Provide OSGi Bundle Repository (OBR) support [installed ] [2.4.0.redhat-630187 ] config karaf-2.4.0.redhat-630187 Provide OSGi ConfigAdmin support [installed ] [9.2.19.v20160908 ] jetty karaf-2.4.0.redhat-630187 Provide Jetty engine support [installed ] [2.4.0.redhat-630187 ] http karaf-2.4.0.redhat-630187 Implementation of the OSGi HTTP service [uninstalled] [2.4.0.redhat-630187 ] http-whiteboard karaf-2.4.0.redhat-630187 Provide HTTP Whiteboard pattern support [installed ] [2.4.0.redhat-630187 ] war karaf-2.4.0.redhat-630187 Turn Karaf as a full WebContainer [uninstalled] [2.4.0.redhat-630187 ] kar karaf-2.4.0.redhat-630187 Provide KAR (KARaf archive) support [installed ] [2.4.0.redhat-630187 ] jaas karaf-2.4.0.redhat-630187 Provide JAAS support [uninstalled] [2.4.0.redhat-630187 ] ssh karaf-2.4.0.redhat-630187 Provide a SSHd server on Karaf [installed ] [2.4.0.redhat-630187 ] management karaf-2.4.0.redhat-630187 Provide a JMX MBeanServer and a set of MBeans in Karaf [uninstalled] [2.4.0.redhat-630187 ] eventadmin karaf-2.4.0.redhat-630187 OSGi Event Admin service specification for event-based communication [installed ] [2.4.0.redhat-630187 ] jasypt-encryption karaf-2.4.0.redhat-630187 Advanced encryption support for Karaf security [uninstalled] [2.4.0.redhat-630187 ] blueprint-web karaf-2.4.0.redhat-630187 Provides an OSGi-aware Servlet ContextListener for bootstrapping blueprint inside web-bundle containers [installed ] [2.4.0.redhat-630187 ] scr karaf-2.4.0.redhat-630187 Declarative Service support [uninstalled] [0.0.0 ] wrap karaf-2.4.0.redhat-630187 Wrap URL handler [installed ] [1.2.0.redhat-630187 ] support-karaf support-1.2.0.redhat-630187 [installed ] [1.2.0.redhat-630187 ] support support-1.2.0.redhat-630187 [uninstalled] [6.3.0.redhat-187 ] camel-sap camel-sap-6.3.0.redhat-187
Ejecución Junit
[ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] XML2JSONRouteTest INFO Testing: unMarshalEmployeeJSON2XML(com.learncamel.route.xml2json.XML2JSONRouteTest) [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-1) is starting [ main] DefaultManagementStrategy INFO JMX is disabled [ main] DefaultTypeConverter INFO Loaded 186 type converters [ main] DefaultCamelContext INFO AllowUseOriginalMessage is enabled. If access to the original message is not needed, then its recommended to turn this option off as it may improve performance. [ main] DefaultCamelContext INFO StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] XML2JSONRouteTest INFO Testing done: unMarshalEmployeeJSON2XML(com.learncamel.route.xml2json.XML2JSONRouteTest) [ main] XML2JSONRouteTest INFO Took: 0.647 seconds (647 millis) [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-1) is shutting down [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-1) uptime 0.360 seconds [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-1) is shutdown in 0.002 seconds [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] XML2JSONRouteTest INFO Testing: marshalEmployeeJSON2XML(com.learncamel.route.xml2json.XML2JSONRouteTest) [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-2) is starting [ main] DefaultManagementStrategy INFO JMX is disabled [ main] DefaultTypeConverter INFO Loaded 186 type converters [ main] DefaultCamelContext INFO AllowUseOriginalMessage is enabled. If access to the original message is not needed, then its recommended to turn this option off as it may improve performance. [ main] DefaultCamelContext INFO StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] XML2JSONRouteTest INFO Testing done: marshalEmployeeJSON2XML(com.learncamel.route.xml2json.XML2JSONRouteTest) [ main] XML2JSONRouteTest INFO Took: 0.222 seconds (222 millis) [ main] XML2JSONRouteTest INFO ******************************************************************************** [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-2) is shutting down [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-2) uptime 0.220 seconds [ main] DefaultCamelContext INFO Apache Camel 2.17.0.redhat-630187 (CamelContext: camel-2) is shutdown in 0.000 seconds
java.lang.NoClassDefFoundError: nu/xom/ParentNode at org.apache.camel.dataformat.xmljson.XmlJsonDataFormat.doStart(XmlJsonDataFormat.java:70) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.impl.DefaultCamelContext.startService(DefaultCamelContext.java:3275) at org.apache.camel.impl.DefaultCamelContext.doAddService(DefaultCamelContext.java:1243) at org.apache.camel.impl.DefaultCamelContext.addService(DefaultCamelContext.java:1204) at org.apache.camel.processor.MarshalProcessor.doStart(MarshalProcessor.java:114) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.RedeliveryErrorHandler.doStart(RedeliveryErrorHandler.java:1372) at org.apache.camel.support.ChildServiceSupport.start(ChildServiceSupport.java:44) at org.apache.camel.support.ChildServiceSupport.start(ChildServiceSupport.java:31) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.interceptor.DefaultChannel.doStart(DefaultChannel.java:156) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:62) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.MulticastProcessor.doStart(MulticastProcessor.java:1149) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.DelegateAsyncProcessor.doStart(DelegateAsyncProcessor.java:79) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.impl.RouteService.startChildService(RouteService.java:340) at org.apache.camel.impl.RouteService.warmUp(RouteService.java:182) at org.apache.camel.impl.DefaultCamelContext.doWarmUpRoutes(DefaultCamelContext.java:3496) at org.apache.camel.impl.DefaultCamelContext.safelyStartRouteServices(DefaultCamelContext.java:3426) at org.apache.camel.impl.DefaultCamelContext.doStartOrResumeRoutes(DefaultCamelContext.java:3203) at org.apache.camel.impl.DefaultCamelContext.doStartCamel(DefaultCamelContext.java:3059) at org.apache.camel.impl.DefaultCamelContext.access$000(DefaultCamelContext.java:175) at org.apache.camel.impl.DefaultCamelContext$2.call(DefaultCamelContext.java:2854) at org.apache.camel.impl.DefaultCamelContext$2.call(DefaultCamelContext.java:2850) at org.apache.camel.impl.DefaultCamelContext.doWithDefinedClassLoader(DefaultCamelContext.java:2873) at org.apache.camel.impl.DefaultCamelContext.doStart(DefaultCamelContext.java:2850) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:2819) at org.apache.camel.test.junit4.CamelTestSupport.startCamelContext(CamelTestSupport.java:545) at org.apache.camel.test.junit4.CamelTestSupport.doSetUp(CamelTestSupport.java:335) at org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:239) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) at org.junit.rules.RunRules.evaluate(RunRules.java:20) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.run(ParentRunner.java:309) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:539) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:761) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:461) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:207) Caused by: java.lang.ClassNotFoundException: nu.xom.ParentNode at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 79 more
install -s mvn:xom/xom/1.2.5
java.lang.NoClassDefFoundError: nu/xom/Element at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:763) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) at java.net.URLClassLoader.access$100(URLClassLoader.java:73) at java.net.URLClassLoader$1.run(URLClassLoader.java:368) at java.net.URLClassLoader$1.run(URLClassLoader.java:362) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:361) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) at org.apache.camel.dataformat.xmljson.XmlJsonDataFormat.doStart(XmlJsonDataFormat.java:70) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.impl.DefaultCamelContext.startService(DefaultCamelContext.java:3275) at org.apache.camel.impl.DefaultCamelContext.doAddService(DefaultCamelContext.java:1243) at org.apache.camel.impl.DefaultCamelContext.addService(DefaultCamelContext.java:1204) at org.apache.camel.processor.MarshalProcessor.doStart(MarshalProcessor.java:114) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.RedeliveryErrorHandler.doStart(RedeliveryErrorHandler.java:1372) at org.apache.camel.support.ChildServiceSupport.start(ChildServiceSupport.java:44) at org.apache.camel.support.ChildServiceSupport.start(ChildServiceSupport.java:31) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.interceptor.DefaultChannel.doStart(DefaultChannel.java:156) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:62) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.MulticastProcessor.doStart(MulticastProcessor.java:1149) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:60) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:104) at org.apache.camel.util.ServiceHelper.startServices(ServiceHelper.java:90) at org.apache.camel.processor.DelegateAsyncProcessor.doStart(DelegateAsyncProcessor.java:79) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.util.ServiceHelper.startService(ServiceHelper.java:75) at org.apache.camel.impl.RouteService.startChildService(RouteService.java:340) at org.apache.camel.impl.RouteService.warmUp(RouteService.java:182) at org.apache.camel.impl.DefaultCamelContext.doWarmUpRoutes(DefaultCamelContext.java:3496) at org.apache.camel.impl.DefaultCamelContext.safelyStartRouteServices(DefaultCamelContext.java:3426) at org.apache.camel.impl.DefaultCamelContext.doStartOrResumeRoutes(DefaultCamelContext.java:3203) at org.apache.camel.impl.DefaultCamelContext.doStartCamel(DefaultCamelContext.java:3059) at org.apache.camel.impl.DefaultCamelContext.access$000(DefaultCamelContext.java:175) at org.apache.camel.impl.DefaultCamelContext$2.call(DefaultCamelContext.java:2854) at org.apache.camel.impl.DefaultCamelContext$2.call(DefaultCamelContext.java:2850) at org.apache.camel.impl.DefaultCamelContext.doWithDefinedClassLoader(DefaultCamelContext.java:2873) at org.apache.camel.impl.DefaultCamelContext.doStart(DefaultCamelContext.java:2850) at org.apache.camel.support.ServiceSupport.start(ServiceSupport.java:61) at org.apache.camel.impl.DefaultCamelContext.start(DefaultCamelContext.java:2819) at org.apache.camel.test.junit4.CamelTestSupport.startCamelContext(CamelTestSupport.java:545) at org.apache.camel.test.junit4.CamelTestSupport.doSetUp(CamelTestSupport.java:335) at org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:239) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44) at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:55) at org.junit.rules.RunRules.evaluate(RunRules.java:20) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27) at org.junit.runners.ParentRunner.run(ParentRunner.java:309) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:539) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:761) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:461) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:207) Caused by: java.lang.ClassNotFoundException: nu.xom.Element at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 91 more
Those classes are in the XOM library which must be provided separately due to licensing issues. The following page explains in detail with the required updates to your project:
This is not a technical issue but a licensing issue. JBoss Fuse is shipped as Apache License V2.0, but XOM is an LGPL library. In general Apache-licensed products must not include LGPL libraries from the legal point of view 1, and JBoss Fuse 6.2 has fixed this licensing issue by removing XOM from the bundled libraries. So in terms of licensing, currently it is our best to separate XOM from Fuse and let users add the dependency in their installation.
Junit Run OK!
Etiquetas:
Linux
Suscribirse a:
Entradas (Atom)