Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hueemulation] Fixes to prevent Alexa errors when using voice commands and the app (#6690) #6909

Merged
merged 3 commits into from Feb 10, 2020

Conversation

MikeJMajor
Copy link
Contributor

@MikeJMajor MikeJMajor commented Jan 26, 2020

Fixes #6690 #5897

When Alexa changes the state of a bulb it seems to immediately request the state of the bulb and after three requests will report an error with the device if the state does not match what it expects.

The issue is due to the conversion from hue state to OH state and back again, e.g. Alexa sends a brightness of 128 which is converted to an OH brightness of 50. However, 50 converts back to 127 and Alexa is expecting to see the brightness change to 128.

This change caches the last hue state change so that the same values can be reflected back for the status of the bulb.

Also the minimum hue brightness as stated in the API should be 1 not 0. Changing this has fixed the issue with all off bulbs being reported in the Alexa app with "Device does not support requested value"

Tested with Alexa voice commands and also Alex app. Also tested with Logitech Harmony remote. Checked bulbs which are off but now reporting brightness of 1 are considered off in both Alexa and Harmony app/remote.

Signed-off-by: Mike Major mike_j_major@hotmail.com

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
@TravisBuddy
Copy link

Travis tests have failed

Hey @MikeJMajor,
please read the following log in order to understand the failure reason. There might also be some helpful tips along the way.
It will be awesome if you fix what is wrong and commit the changes.

2nd Build

Expand here
Single addon pull request: Building org.openhab.io.hueemulation
[WARNING] The POM for com.sun.xml.bind:jaxb-core:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] The POM for com.sun.xml.bind:jaxb-impl:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] Could not find file feature file features/karaf/openhab-addons/src/main/feature/feature.xml
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.sun.xml.bind.v2.runtime.reflect.opt.Injector (file:/home/travis/.m2/repository/com/sun/xml/bind/jaxb-impl/2.2.11/jaxb-impl-2.2.11.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
WARNING: Please consider reporting this to the maintainers of com.sun.xml.bind.v2.runtime.reflect.opt.Injector
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/ConfigStore.java:[197,8529] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/automation/TimerTriggerHandler.java:[117,4234] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/automation/AbsoluteDateTimeTriggerHandler.java:[109,4382] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java:[54,2350] The import org.osgi.service.event.EventAdmin is never used
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/StateUtils.java:[436,17523] Potential null pointer access: The method as(Class) may return null
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/StateUtils.java:[450,18132] Potential null pointer access: The method as(Class) may return null
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[57,2056] The import org.osgi.service.event.EventAdmin is never used
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[444,19419] Potential null pointer access: The variable channelV4 may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[451,19810] Potential null pointer access: The variable channelV6 may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/pom.xml [0:0]: Unused Export-Package instructions: [org.openhab.*] 
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/pom.xml [0:0]: Unused Import-Package instructions: [javax.annotation.security.*, org.eclipse.jdt.annotation.*, org.openhab.core.automation.annotation.*, com.google.common.*] 
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
Exception in thread "HueEmulation UPNP Server" java.util.ConcurrentModificationException
	at java.base/java.util.HashMap$HashIterator.remove(HashMap.java:1507)
	at org.openhab.io.hueemulation.internal.upnp.UpnpServer.accept(UpnpServer.java:470)
	at org.openhab.io.hueemulation.internal.upnp.UpnpServer.accept(UpnpServer.java:1)
	at org.openhab.io.hueemulation.internal.upnp.HueEmulationConfigWithRuntime.run(HueEmulationConfigWithRuntime.java:111)
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - No unique ID assigned yet. Assigning 49dd00c8-4d40-4d72-b6bf-6be3dec0a26b and restarting...
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[WARNING] Could not find file feature file features/karaf/openhab-addons/src/main/feature/feature.xml
[WARNING] Code Analysis Tool has found: 
 0 error(s)! 
 44 warning(s) 
 40 info(s)
[WARNING] .io.hueemulation/README.md:[158]
The line before code formatting section must be empty.
[WARNING] .io.hueemulation/README.md:[167]
The line after code formatting section must be empty.
[WARNING] org.openhab.io.hueemulation.internal.upnp.UpnpServer.java:[82]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[86]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[91]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[105]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueScheduleEntry.java:[24]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueNewLights.java:[21]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.AbstractHueState.java:[21]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponseStateChanged.java:[40]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponseStateChanged.java:[49]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessGeneric.java:[40]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessCreateGroup.java:[29]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueResponse.java:[54]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponse.java:[20]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStateBulb.java:[24]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueDataStore.java:[63]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueRuleEntry.java:[71]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueAuthorizedConfig.java:[86]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueGroupEntry.java:[93]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.changerequest.HueStateChange.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStatePlug.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[60]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[68]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[73]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[166]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueSensorEntry.java:[95]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStateColorBulb.java:[27]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueCapability.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.TimerTriggerHandler.java:[55]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.HttpActionHandler.java:[56]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.AbsoluteDateTimeTriggerHandler.java:[42]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.RuleUtils.java:[110]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.RuleUtils.java:[312]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer.java:[25]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.upnp.UpnpTests.java:[51]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.DummyUsersStorage.java:[27]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.DummyUsersStorage.java:[55]
There is no need for a @NonNull annotation because it is set as default. Only @Nullable should be used
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.ConfigStoreWithoutMetadata.java:[30]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.ConfigStoreWithoutMetadata.java:[42]
There is no need for a @NonNull annotation because it is set as default. Only @Nullable should be used
[WARNING] org.openhab.io.hueemulation.internal.rest.CommonSetup.java:[61]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.UsersAndConfigTests.java:[46]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.RuleConditionHandlerTests.java:[54]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] ESH-INF.config.config.xml:[0]
Unused configuration reference with uri - io:hueemulation
Single addon pull request: Building itest org.openhab.io.hueemulation
[WARNING] The POM for com.sun.xml.bind:jaxb-core:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] The POM for com.sun.xml.bind:jaxb-impl:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationServiceOSGiTest.java:[70,2482] Potential null pointer access: The variable configurationAdmin may be null at this location
[ERROR] Tests not run because project has errors
[ERROR] Error   : Cannot find /error/ch.qos.logback.core;version=[1.2.3,1.2.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/com.google.gson;version=[2.8.2,2.8.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/javax.measure.unit-api;version=[1.0.0,1.0.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.io;version=[2.2.0,2.2.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.lang;version=[2.6.0,2.6.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.http.servlet-api;version=[1.1.2,1.1.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.scr;version=[2.1.10,2.1.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.equinox.event;version=[1.4.300,1.4.301) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.config.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.test;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.osgi.service.event;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/osgi.enroute.hamcrest.wrapper;version=[1.3.0,1.3.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/osgi.enroute.junit.wrapper;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/slf4j.api;version=[1.7.25,1.7.26) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.exec;version=[1.1.0,1.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.configadmin;version=[1.9.8,1.9.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.activation-api-1.1;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.jaxb-api-2.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.stax-api-1.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.xbean.bundleutils;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.xbean.finder;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.automation;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.io.console;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.io.net;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.thing;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.bundles.xstream;version=[1.4.7,1.4.8) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.binding.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.config.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.thing.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/com.eclipsesource.jaxrs.jersey-all;version=[2.22.2,2.22.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/tec.uom.lib.uom-lib-common;version=[1.0.3,1.0.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/tec.uom.se;version=[1.0.10,1.0.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.bundles.jaxb-impl;version=[2.2.11,2.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.ephemeris;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm.commons;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm.tree;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/jollyday;version=[0.5.8,0.5.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.threeten.extra;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.http;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.io;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.security;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.server;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.servlet;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.util;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.api;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.common;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.xml;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.swissbox.optional.jcl;version=[1.8.3,1.8.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-api;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-jetty;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-runtime;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-spi;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/slf4j.simple;version=[1.7.21,1.7.22) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : ch.qos.logback.core;version=[1.2.3,1.2.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : com.google.gson;version=[2.8.2,2.8.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : javax.measure.unit-api;version=[1.0.0,1.0.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.io;version=[2.2.0,2.2.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.lang;version=[2.6.0,2.6.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.http.servlet-api;version=[1.1.2,1.1.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.scr;version=[2.1.10,2.1.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.equinox.event;version=[1.4.300,1.4.301) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.config.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.test;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.osgi.service.event;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : osgi.enroute.hamcrest.wrapper;version=[1.3.0,1.3.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : osgi.enroute.junit.wrapper;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : slf4j.api;version=[1.7.25,1.7.26) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.exec;version=[1.1.0,1.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.configadmin;version=[1.9.8,1.9.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.activation-api-1.1;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.jaxb-api-2.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.stax-api-1.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.xbean.bundleutils;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.xbean.finder;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.automation;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.io.console;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.io.net;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.thing;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.bundles.xstream;version=[1.4.7,1.4.8) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.binding.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.config.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.thing.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : com.eclipsesource.jaxrs.jersey-all;version=[2.22.2,2.22.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : tec.uom.lib.uom-lib-common;version=[1.0.3,1.0.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : tec.uom.se;version=[1.0.10,1.0.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.bundles.jaxb-impl;version=[2.2.11,2.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.ephemeris;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm.commons;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm.tree;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : jollyday;version=[0.5.8,0.5.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.threeten.extra;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.http;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.io;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.security;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.server;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.servlet;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.util;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.api;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.common;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.xml;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.swissbox.optional.jcl;version=[1.8.3,1.8.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-api;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-jetty;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-runtime;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-spi;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : slf4j.simple;version=[1.7.21,1.7.22) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.osgi;version=0 Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.osgi;version=0 Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Failed to execute goal biz.aQute.bnd:bnd-testing-maven-plugin:4.3.0:testing (default) on project org.openhab.io.hueemulation.tests: 116 errors found -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
@MikeJMajor MikeJMajor changed the title [hueemulation] Adjust calculated hue state to prevent Alexa reporting device errors (#6690) [hueemulation] Fix to prevent Alexa errors when using voice commands and the app (#6690) Jan 27, 2020
@TravisBuddy
Copy link

Travis tests have failed

Hey @MikeJMajor,
please read the following log in order to understand the failure reason. There might also be some helpful tips along the way.
It will be awesome if you fix what is wrong and commit the changes.

2nd Build

Expand here
Single addon pull request: Building org.openhab.io.hueemulation
[WARNING] Could not transfer metadata org.openhab:openhab-super-pom/maven-metadata.xml from/to sonatype (https://oss.sonatype.org/content/repositories/releases/): Access denied to: https://oss.sonatype.org/content/repositories/releases/org/openhab/openhab-super-pom/maven-metadata.xml
[WARNING] The POM for com.sun.xml.bind:jaxb-core:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] The POM for com.sun.xml.bind:jaxb-impl:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] Could not find file feature file features/karaf/openhab-addons/src/main/feature/feature.xml
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.sun.xml.bind.v2.runtime.reflect.opt.Injector (file:/home/travis/.m2/repository/com/sun/xml/bind/jaxb-impl/2.2.11/jaxb-impl-2.2.11.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
WARNING: Please consider reporting this to the maintainers of com.sun.xml.bind.v2.runtime.reflect.opt.Injector
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/ConfigStore.java:[197,8529] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/automation/TimerTriggerHandler.java:[117,4234] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/automation/AbsoluteDateTimeTriggerHandler.java:[109,4382] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java:[54,2350] The import org.osgi.service.event.EventAdmin is never used
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/StateUtils.java:[436,17523] Potential null pointer access: The method as(Class) may return null
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/StateUtils.java:[450,18132] Potential null pointer access: The method as(Class) may return null
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[57,2056] The import org.osgi.service.event.EventAdmin is never used
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[444,19419] Potential null pointer access: The variable channelV4 may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[451,19810] Potential null pointer access: The variable channelV6 may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/pom.xml [0:0]: Unused Export-Package instructions: [org.openhab.*] 
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/pom.xml [0:0]: Unused Import-Package instructions: [javax.annotation.security.*, org.eclipse.jdt.annotation.*, org.openhab.core.automation.annotation.*, com.google.common.*] 
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
Exception in thread "HueEmulation UPNP Server" java.util.ConcurrentModificationException
	at java.base/java.util.HashMap$HashIterator.remove(HashMap.java:1507)
	at org.openhab.io.hueemulation.internal.upnp.UpnpServer.accept(UpnpServer.java:470)
	at org.openhab.io.hueemulation.internal.upnp.UpnpServer.accept(UpnpServer.java:1)
	at org.openhab.io.hueemulation.internal.upnp.HueEmulationConfigWithRuntime.run(HueEmulationConfigWithRuntime.java:111)
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - No unique ID assigned yet. Assigning 7fb55df4-9e5e-42da-bd58-d5150864b7fc and restarting...
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[WARNING] Could not find file feature file features/karaf/openhab-addons/src/main/feature/feature.xml
[WARNING] Code Analysis Tool has found: 
 0 error(s)! 
 44 warning(s) 
 40 info(s)
[WARNING] .io.hueemulation/README.md:[158]
The line before code formatting section must be empty.
[WARNING] .io.hueemulation/README.md:[167]
The line after code formatting section must be empty.
[WARNING] org.openhab.io.hueemulation.internal.upnp.UpnpServer.java:[82]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[86]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[91]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[105]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueScheduleEntry.java:[24]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueNewLights.java:[21]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.AbstractHueState.java:[21]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponseStateChanged.java:[40]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponseStateChanged.java:[49]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessGeneric.java:[40]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessCreateGroup.java:[29]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueResponse.java:[54]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponse.java:[20]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStateBulb.java:[24]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueDataStore.java:[63]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueRuleEntry.java:[71]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueAuthorizedConfig.java:[86]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueGroupEntry.java:[93]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.changerequest.HueStateChange.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStatePlug.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[60]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[68]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[73]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[166]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueSensorEntry.java:[95]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStateColorBulb.java:[27]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueCapability.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.TimerTriggerHandler.java:[55]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.HttpActionHandler.java:[56]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.AbsoluteDateTimeTriggerHandler.java:[42]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.RuleUtils.java:[110]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.RuleUtils.java:[312]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer.java:[25]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.upnp.UpnpTests.java:[51]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.DummyUsersStorage.java:[27]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.DummyUsersStorage.java:[55]
There is no need for a @NonNull annotation because it is set as default. Only @Nullable should be used
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.ConfigStoreWithoutMetadata.java:[30]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.ConfigStoreWithoutMetadata.java:[42]
There is no need for a @NonNull annotation because it is set as default. Only @Nullable should be used
[WARNING] org.openhab.io.hueemulation.internal.rest.CommonSetup.java:[61]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.UsersAndConfigTests.java:[46]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.RuleConditionHandlerTests.java:[54]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] ESH-INF.config.config.xml:[0]
Unused configuration reference with uri - io:hueemulation
Single addon pull request: Building itest org.openhab.io.hueemulation
[WARNING] Could not transfer metadata org.openhab:openhab-super-pom/maven-metadata.xml from/to sonatype (https://oss.sonatype.org/content/repositories/releases/): Access denied to: https://oss.sonatype.org/content/repositories/releases/org/openhab/openhab-super-pom/maven-metadata.xml
[WARNING] The POM for com.sun.xml.bind:jaxb-core:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] The POM for com.sun.xml.bind:jaxb-impl:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] Failure to transfer org.openhab:openhab-super-pom/maven-metadata.xml from https://oss.sonatype.org/content/repositories/releases/ was cached in the local repository, resolution will not be reattempted until the update interval of sonatype has elapsed or updates are forced. Original error: Could not transfer metadata org.openhab:openhab-super-pom/maven-metadata.xml from/to sonatype (https://oss.sonatype.org/content/repositories/releases/): Access denied to: https://oss.sonatype.org/content/repositories/releases/org/openhab/openhab-super-pom/maven-metadata.xml
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationServiceOSGiTest.java:[70,2482] Potential null pointer access: The variable configurationAdmin may be null at this location
[ERROR] Tests not run because project has errors
[ERROR] Error   : Cannot find /error/ch.qos.logback.core;version=[1.2.3,1.2.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/com.google.gson;version=[2.8.2,2.8.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/javax.measure.unit-api;version=[1.0.0,1.0.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.io;version=[2.2.0,2.2.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.lang;version=[2.6.0,2.6.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.http.servlet-api;version=[1.1.2,1.1.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.scr;version=[2.1.10,2.1.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.equinox.event;version=[1.4.300,1.4.301) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.config.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.test;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.osgi.service.event;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/osgi.enroute.hamcrest.wrapper;version=[1.3.0,1.3.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/osgi.enroute.junit.wrapper;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/slf4j.api;version=[1.7.25,1.7.26) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.exec;version=[1.1.0,1.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.configadmin;version=[1.9.8,1.9.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.activation-api-1.1;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.jaxb-api-2.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.stax-api-1.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.xbean.bundleutils;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.xbean.finder;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.automation;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.io.console;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.io.net;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.thing;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.bundles.xstream;version=[1.4.7,1.4.8) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.binding.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.config.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.thing.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/com.eclipsesource.jaxrs.jersey-all;version=[2.22.2,2.22.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/tec.uom.lib.uom-lib-common;version=[1.0.3,1.0.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/tec.uom.se;version=[1.0.10,1.0.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.bundles.jaxb-impl;version=[2.2.11,2.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.ephemeris;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm.commons;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm.tree;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/jollyday;version=[0.5.8,0.5.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.threeten.extra;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.http;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.io;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.security;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.server;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.servlet;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.util;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.api;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.common;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.xml;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.swissbox.optional.jcl;version=[1.8.3,1.8.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-api;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-jetty;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-runtime;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-spi;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/slf4j.simple;version=[1.7.21,1.7.22) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : ch.qos.logback.core;version=[1.2.3,1.2.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : com.google.gson;version=[2.8.2,2.8.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : javax.measure.unit-api;version=[1.0.0,1.0.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.io;version=[2.2.0,2.2.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.lang;version=[2.6.0,2.6.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.http.servlet-api;version=[1.1.2,1.1.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.scr;version=[2.1.10,2.1.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.equinox.event;version=[1.4.300,1.4.301) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.config.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.test;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.osgi.service.event;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : osgi.enroute.hamcrest.wrapper;version=[1.3.0,1.3.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : osgi.enroute.junit.wrapper;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : slf4j.api;version=[1.7.25,1.7.26) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.exec;version=[1.1.0,1.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.configadmin;version=[1.9.8,1.9.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.activation-api-1.1;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.jaxb-api-2.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.stax-api-1.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.xbean.bundleutils;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.xbean.finder;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.automation;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.io.console;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.io.net;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.thing;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.bundles.xstream;version=[1.4.7,1.4.8) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.binding.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.config.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.thing.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : com.eclipsesource.jaxrs.jersey-all;version=[2.22.2,2.22.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : tec.uom.lib.uom-lib-common;version=[1.0.3,1.0.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : tec.uom.se;version=[1.0.10,1.0.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.bundles.jaxb-impl;version=[2.2.11,2.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.ephemeris;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm.commons;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm.tree;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : jollyday;version=[0.5.8,0.5.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.threeten.extra;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.http;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.io;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.security;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.server;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.servlet;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.util;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.api;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.common;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.xml;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.swissbox.optional.jcl;version=[1.8.3,1.8.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-api;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-jetty;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-runtime;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-spi;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : slf4j.simple;version=[1.7.21,1.7.22) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.osgi;version=0 Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.osgi;version=0 Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Failed to execute goal biz.aQute.bnd:bnd-testing-maven-plugin:4.3.0:testing (default) on project org.openhab.io.hueemulation.tests: 116 errors found -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

@MikeJMajor MikeJMajor changed the title [hueemulation] Fix to prevent Alexa errors when using voice commands and the app (#6690) [hueemulation] Fixes to prevent Alexa errors when using voice commands and the app (#6690) Jan 27, 2020
@MikeJMajor MikeJMajor added the bug An unexpected problem or unintended behavior of an add-on label Jan 27, 2020
@MikeJMajor MikeJMajor requested a review from a team January 28, 2020 06:54
Copy link
Member

@davidgraeff davidgraeff left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't like that we have introduced another state cache here. The original idea of OH was that Addons do not keep any state. It fixes the Alexa behaviour though. I approve.

@MikeJMajor
Copy link
Contributor Author

@davidgraeff is this waiting on a second reviewer or can it be merged?

Copy link
Member

@martinvw martinvw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are waiting for a second approval but I and most likely the other @openhab/add-ons-maintainers are also not happy with the introduction of state here.

The issue is due to the conversion from hue state to OH state and back again, e.g. Alexa sends a brightness of 128 which is converted to an OH brightness of 50. However, 50 converts back to 127 and Alexa is expecting to see the brightness change to 128.

Can't we just fix the conversion such that it is able to translate consistently? It seems like it should be possible to do so.

1 -> 0
128 -> 50
256 -> 100

I would very much prefer to resolve it like this instead of adding cache which could cause new problems.,

@MikeJMajor
Copy link
Contributor Author

Probably not had enough coffee yet, but I'm struggling to see how the conversion can be fixed.

Given that there are more Hue values than OH values there must be certain OH values that map to more than one Hue value. So given an OH value how do you know which of the multiple Hue values to pick if you have no context as to what was originally sent in?

@martinvw
Copy link
Member

Probably not had enough coffee yet, but I'm struggling to see how the conversion can be fixed.

Given that there are more Hue values than OH values there must be certain OH values that map to more than one Hue value. So given an OH value how do you know which of the multiple Hue values to pick if you have no context as to what was originally sent in?

But does Alexa send every possible value? If Alexa can indeed send any value between 1 and 255 it will be hard to map it to an integer value between 0-100 and not have any mismatches.

@MikeJMajor
Copy link
Contributor Author

Sure that could be possible for something like brightness, if not a little tiresome asking Alexa 100 times 😁

There's also the same problem with hue and saturation. Again you could exercise all the colour options on the Alexa app, but I'm not sure that's the full set and would break as soon as a new colour was introduced.

@martinvw
Copy link
Member

martinvw commented Jan 31, 2020

@kaikreuzer and other @openhab/add-ons-maintainers wdyt?

Copy link
Member

@Hilbrand Hilbrand left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks like a issue due to loss of resolution due to the openHAB conversion. I have no other direct solution so if this works than I guess that should be ok.

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
@TravisBuddy
Copy link

Travis tests have failed

Hey @MikeJMajor,
please read the following log in order to understand the failure reason. There might also be some helpful tips along the way.
It will be awesome if you fix what is wrong and commit the changes.

2nd Build

Expand here
Single addon pull request: Building org.openhab.io.hueemulation
[WARNING] The POM for com.sun.xml.bind:jaxb-core:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] The POM for com.sun.xml.bind:jaxb-impl:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] Could not find file feature file features/karaf/openhab-addons/src/main/feature/feature.xml
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.sun.xml.bind.v2.runtime.reflect.opt.Injector (file:/home/travis/.m2/repository/com/sun/xml/bind/jaxb-impl/2.2.11/jaxb-impl-2.2.11.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int)
WARNING: Please consider reporting this to the maintainers of com.sun.xml.bind.v2.runtime.reflect.opt.Injector
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/ConfigStore.java:[197,8529] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/automation/TimerTriggerHandler.java:[117,4234] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/automation/AbsoluteDateTimeTriggerHandler.java:[109,4382] Potential null pointer access: this expression has a '@Nullable' type
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java:[54,2350] The import org.osgi.service.event.EventAdmin is never used
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/StateUtils.java:[436,17564] Potential null pointer access: The method as(Class) may return null
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/StateUtils.java:[456,18503] Potential null pointer access: The method as(Class) may return null
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[57,2056] The import org.osgi.service.event.EventAdmin is never used
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[444,19419] Potential null pointer access: The variable channelV4 may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/upnp/UpnpServer.java:[451,19810] Potential null pointer access: The variable channelV6 may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/pom.xml [0:0]: Unused Export-Package instructions: [org.openhab.*] 
[WARNING] /home/travis/build/openhab/openhab-addons/bundles/org.openhab.io.hueemulation/pom.xml [0:0]: Unused Import-Package instructions: [javax.annotation.security.*, org.eclipse.jdt.annotation.*, org.openhab.core.automation.annotation.*, com.google.common.*] 
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
Exception in thread "HueEmulation UPNP Server" java.util.ConcurrentModificationException
	at java.base/java.util.HashMap$HashIterator.remove(HashMap.java:1507)
	at org.openhab.io.hueemulation.internal.upnp.UpnpServer.accept(UpnpServer.java:470)
	at org.openhab.io.hueemulation.internal.upnp.UpnpServer.accept(UpnpServer.java:1)
	at org.openhab.io.hueemulation.internal.upnp.HueEmulationConfigWithRuntime.run(HueEmulationConfigWithRuntime.java:111)
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - No unique ID assigned yet. Assigning fd01430e-ce78-441e-85fa-f46805194c29 and restarting...
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[main] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[WARNING] Could not find file feature file features/karaf/openhab-addons/src/main/feature/feature.xml
[WARNING] Code Analysis Tool has found: 
 0 error(s)! 
 44 warning(s) 
 40 info(s)
[WARNING] .io.hueemulation/README.md:[158]
The line before code formatting section must be empty.
[WARNING] .io.hueemulation/README.md:[167]
The line after code formatting section must be empty.
[WARNING] org.openhab.io.hueemulation.internal.upnp.UpnpServer.java:[82]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[86]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[91]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.HueEmulationService.java:[105]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueScheduleEntry.java:[24]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueNewLights.java:[21]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.AbstractHueState.java:[21]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponseStateChanged.java:[40]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponseStateChanged.java:[49]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessGeneric.java:[40]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessCreateGroup.java:[29]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueResponse.java:[54]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.response.HueSuccessResponse.java:[20]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStateBulb.java:[24]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueDataStore.java:[63]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueRuleEntry.java:[71]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueAuthorizedConfig.java:[86]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueGroupEntry.java:[93]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.changerequest.HueStateChange.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStatePlug.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[60]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[68]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[73]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueLightEntry.java:[166]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueSensorEntry.java:[95]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueStateColorBulb.java:[27]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.dto.HueCapability.java:[23]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.TimerTriggerHandler.java:[55]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.HttpActionHandler.java:[56]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.AbsoluteDateTimeTriggerHandler.java:[42]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.RuleUtils.java:[110]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.RuleUtils.java:[312]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer.java:[25]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.upnp.UpnpTests.java:[51]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.DummyUsersStorage.java:[27]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.DummyUsersStorage.java:[55]
There is no need for a @NonNull annotation because it is set as default. Only @Nullable should be used
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.ConfigStoreWithoutMetadata.java:[30]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.mocks.ConfigStoreWithoutMetadata.java:[42]
There is no need for a @NonNull annotation because it is set as default. Only @Nullable should be used
[WARNING] org.openhab.io.hueemulation.internal.rest.CommonSetup.java:[61]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.rest.UsersAndConfigTests.java:[46]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] org.openhab.io.hueemulation.internal.automation.RuleConditionHandlerTests.java:[54]
Classes/Interfaces should be annotated with @NonNullByDefault
[WARNING] ESH-INF.config.config.xml:[0]
Unused configuration reference with uri - io:hueemulation
Single addon pull request: Building itest org.openhab.io.hueemulation
[WARNING] The POM for com.sun.xml.bind:jaxb-core:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] The POM for com.sun.xml.bind:jaxb-impl:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationServiceOSGiTest.java:[70,2482] Potential null pointer access: The variable configurationAdmin may be null at this location
[ERROR] Tests not run because project has errors
[ERROR] Error   : Cannot find /error/ch.qos.logback.core;version=[1.2.3,1.2.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/com.google.gson;version=[2.8.2,2.8.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/javax.measure.unit-api;version=[1.0.0,1.0.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.io;version=[2.2.0,2.2.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.lang;version=[2.6.0,2.6.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.http.servlet-api;version=[1.1.2,1.1.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.scr;version=[2.1.10,2.1.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.equinox.event;version=[1.4.300,1.4.301) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.config.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.test;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.osgi.service.event;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/osgi.enroute.hamcrest.wrapper;version=[1.3.0,1.3.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/osgi.enroute.junit.wrapper;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/slf4j.api;version=[1.7.25,1.7.26) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.commons.exec;version=[1.1.0,1.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.felix.configadmin;version=[1.9.8,1.9.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.activation-api-1.1;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.jaxb-api-2.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.specs.stax-api-1.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.xbean.bundleutils;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.xbean.finder;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.automation;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.io.console;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.io.net;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.thing;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.bundles.xstream;version=[1.4.7,1.4.8) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.binding.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.config.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.thing.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/com.eclipsesource.jaxrs.jersey-all;version=[2.22.2,2.22.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/tec.uom.lib.uom-lib-common;version=[1.0.3,1.0.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/tec.uom.se;version=[1.0.10,1.0.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.apache.servicemix.bundles.jaxb-impl;version=[2.2.11,2.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.openhab.core.ephemeris;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm.commons;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.objectweb.asm.tree;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/jollyday;version=[0.5.8,0.5.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.threeten.extra;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.http;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.io;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.security;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.server;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.servlet;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.util;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.api;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.websocket.common;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.jetty.xml;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.swissbox.optional.jcl;version=[1.8.3,1.8.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-api;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-jetty;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-runtime;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.ops4j.pax.web.pax-web-spi;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/slf4j.simple;version=[1.7.21,1.7.22) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : ch.qos.logback.core;version=[1.2.3,1.2.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : com.google.gson;version=[2.8.2,2.8.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : javax.measure.unit-api;version=[1.0.0,1.0.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.io;version=[2.2.0,2.2.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.lang;version=[2.6.0,2.6.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.http.servlet-api;version=[1.1.2,1.1.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.scr;version=[2.1.10,2.1.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.equinox.event;version=[1.4.300,1.4.301) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.config.core;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.test;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.osgi.service.event;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : osgi.enroute.hamcrest.wrapper;version=[1.3.0,1.3.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : osgi.enroute.junit.wrapper;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : slf4j.api;version=[1.7.25,1.7.26) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.commons.exec;version=[1.1.0,1.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.felix.configadmin;version=[1.9.8,1.9.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.activation-api-1.1;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.jaxb-api-2.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.specs.stax-api-1.2;version=[2.9.0,2.9.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.xbean.bundleutils;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.xbean.finder;version=[4.12.0,4.12.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.automation;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.io.console;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.io.net;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.thing;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.bundles.xstream;version=[1.4.7,1.4.8) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.binding.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.config.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.thing.xml;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : com.eclipsesource.jaxrs.jersey-all;version=[2.22.2,2.22.3) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : tec.uom.lib.uom-lib-common;version=[1.0.3,1.0.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : tec.uom.se;version=[1.0.10,1.0.11) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.apache.servicemix.bundles.jaxb-impl;version=[2.2.11,2.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.openhab.core.ephemeris;version=[2.5.0,2.5.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm.commons;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.objectweb.asm.tree;version=[7.1.0,7.1.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : jollyday;version=[0.5.8,0.5.9) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.threeten.extra;version=[1.4.0,1.4.1) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.http;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.io;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.security;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.server;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.servlet;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.util;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.api;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.client;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.websocket.common;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.jetty.xml;version=[9.4.20,9.4.21) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.swissbox.optional.jcl;version=[1.8.3,1.8.4) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-api;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-jetty;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-runtime;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.ops4j.pax.web.pax-web-spi;version=[7.2.11,7.2.12) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : slf4j.simple;version=[1.7.21,1.7.22) Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : Cannot find /error/org.eclipse.osgi;version=0 Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Error   : org.eclipse.osgi;version=0 Not found in [openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests [org.jupnp,org.openhab.io.hueemulation.tests,org.openhab.io.hueemulation r/w=false], bnd-cache [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache r/w=false], org.openhab.core.bom.runtime-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index r/w=false], org.openhab.core.bom.test-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.test-index r/w=false], org.openhab.core.bom.openhab-core-index [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.openhab-core-index r/w=false], self [/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/self r/w=false]]
[ERROR] Failed to execute goal biz.aQute.bnd:bnd-testing-maven-plugin:4.3.0:testing (default) on project org.openhab.io.hueemulation.tests: 116 errors found -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

@MikeJMajor
Copy link
Contributor Author

@Hilbrand I've included your review comments, do you have any further comments?

@MikeJMajor
Copy link
Contributor Author

@openhab/add-ons-maintainers does anyone have any further comments or can this be merged?

@martinvw martinvw merged commit 008d808 into openhab:2.5.x Feb 10, 2020
@martinvw
Copy link
Member

@MikeJMajor I merged it, thanks for the ping.

@MikeJMajor MikeJMajor deleted the hue25 branch February 10, 2020 22:39
boehan pushed a commit to boehan/openhab-addons that referenced this pull request Feb 15, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
andibraeu pushed a commit to andibraeu/openhab-addons that referenced this pull request Feb 17, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
@kaikreuzer kaikreuzer added this to the 2.5.2 milestone Feb 19, 2020
leluna pushed a commit to leluna/openhab2-addons that referenced this pull request Mar 21, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
Signed-off-by: leluna <hengrui.jiang@googlemail.com>
Hans-Reiner pushed a commit to Hans-Reiner/openhab2-addons that referenced this pull request Apr 11, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
Signed-off-by: Hans-Reiner Hoffmann <hans-reiner.hoffmann@gmx.de>
markus7017 pushed a commit to markus7017/openhab-addons that referenced this pull request May 29, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
@rancor187
Copy link

Hi there and thank you for the prev. fix.

Unfortunately for me I use ROLLERSHUTTER items instead of DIMMER items and I still encounter the issue, but only when I want to send my rollershutters downwards.
(I mentioned this here already, but I guess that wasn't the right place.)
I am on OH 2.5.4 and this is one of the candidates:

Rollershutter Proxy_JA3_R2_Level_RS "Rollo Bathroom [%s]" ["Lighting"]

Once these items where added as devices in the Alexa App I started to test voice commands:

Alexa Rollo Bathroom 25% - Works just fine
Alexa Rollo Bathroom 33 - Works just fine
Alexa Rollo Bathroom Down - Does the job, but Alexa: "'Rollo Bathroom' doesn't seem to work properly"
Alexa Rollo Bathroom Off - Does the job, but Alexa: "'Rollo Bathroom' doesn't seem to work properly"
Alexa Rollo Bathroom Up - Works just fine

This is a rough translation from the German response of Alexa and the voice commands.

Is there anything that I could do about it?
Thank you.

@MHerbst
Copy link
Contributor

MHerbst commented Jun 3, 2020

You could try to add some additional information to your item definition: https://www.openhab.org/docs/ecosystem/alexa/#semantic-extensions Maybe this helps

@rancor187
Copy link

Hi, actually I can't. I didn't leave anything out.
There is no channel with this item as it acts as a proxy item to controle other items (with channels). I could add these other 'real' items that are beeing controlled by this proxy item.

I just noticed you referred me to the "Amazon Alexa Smart Home Skill" page but I am using hueemulation: https://www.openhab.org/addons/integrations/hueemulation/

Thanks

@MikeJMajor
Copy link
Contributor Author

Can you add an example from your events.log which shows what happens to your proxy items when those commands are sent from Alexa.

LoungeFlyZ pushed a commit to LoungeFlyZ/openhab2-addons that referenced this pull request Jun 8, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
@mstormi
Copy link
Contributor

mstormi commented Jun 26, 2020

@MikeJMajor I've reopened #6690 and put and example of mine there.

J-N-K pushed a commit to J-N-K/openhab-addons that referenced this pull request Jul 14, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
DaanMeijer pushed a commit to DaanMeijer/openhab-addons that referenced this pull request Sep 1, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
Signed-off-by: Daan Meijer <daan@studioseptember.nl>
markus7017 pushed a commit to markus7017/openhab-addons that referenced this pull request Sep 19, 2020
…s and the app (openhab#6690) (openhab#6909)

* Correct state to prevent Alexa reporting device errors.
* Minimum hue brightness should be 1 not 0.
* Updated with review comments and return CT value in status

Signed-off-by: Mike Major <mike_j_major@hotmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug An unexpected problem or unintended behavior of an add-on
Projects
None yet
9 participants