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

[lgwebos] Wake-on-Lan Integration #7103

Merged
merged 16 commits into from Apr 18, 2020
Merged

[lgwebos] Wake-on-Lan Integration #7103

merged 16 commits into from Apr 18, 2020

Conversation

sprehn
Copy link
Contributor

@sprehn sprehn commented Mar 5, 2020

  • Integrates Wake-on-Lan functionality in power channel, so that there is no need anymore for wol1 binding.
  • Removes special ssdp search request for lge-com:service:webos-second-screen:1

@TravisBuddy
Copy link

Travis tests were successful

Hey @sprehn,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

Copy link
Contributor

@lolodomo lolodomo left a comment

Choose a reason for hiding this comment

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

Few minor remarks + a major question about LGWebOSUpnpShutdownDetector

@lolodomo
Copy link
Contributor

lolodomo commented Mar 6, 2020

I have the stange feeling that the problem is in your discovery code that would not consider the right UPnP device/service, or maybe not all.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 6, 2020

I think the proper way to do it would be to have a class that implements UpnpIOParticipant. Of course, this class has to be registered as UPnP participant in order to be called by the core framework and has to return the appropriate UDN. Normally the method onStatusChanged will then be called by the core framework each time there is a change detected by JUPnP.
Note that you could also use this way of doing in your thing handler (look at the Sonos binding as example) rather than using the discovery stuff.
Your 2 UPnP remote devices have different identifiers I imagine ? That explains the need of 2 UpnpIOParticipant instances.

I have clearly the feeling that you have everything already implemented in the openHAB core framework. You just need to implement UpnpIOParticipant with the appropriate UDN and you will be notified of any status change by the core framework.

I own a LG TV since recently, I will start UPnP Spy to understand this stuff with UPnP devices/services from LG and then I can help you. By the way, this will be the occasion to give you a feedback on your binding.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 6, 2020

I see that you have the UDN set in the deviceId property of your thing but only for discovered things. That means, things created manually will not have this property set and so you don't know what UDN to return in your thing handler in case you want to implement UpnpIOParticipant. Forcing the user to set this value would be a too much big constraint. So implementing DiscoveryListener is probably not a bad idea and could help retrieving this UDN if not yet set. I will think about that.

Regarding the two root devices you are interested in and their respective UDN, if there is a way to deduce one for the other, this would help a lot.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 6, 2020

It even exists in the core framework the method addStatusListener you could use to call an UPnP action at the frequency you wish in order to have more quickly status changes. This method is apparently used by no bindings until now.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 6, 2020

I installed your binding and tested most of the features and everything is working very well (even if I discovered few issues).

Then I updated the code to test what I was talking about, that is having the thing handler implementing UpnpIOParticipant. Bingo, I can see an immediate call to onStatusChanged with true or false just after I switch on or off the TV with the TV remote control.
To do my test, I have hardcoded the UDN of the UPnP rmeote device urn:schemas-upnp-org:device:Basic:1.

When I switch ON my TV, I see in app UPnP Device Spy 4 UPnP devices appearing immediately:

  • urn:schemas-upnp-org:device:Basic:1
  • urn:dial-multiscreen-org:service:dial:1
  • urn:lge:device:tv:1
  • urn:schemas-upnp-org:device:MediaRenderer:1

They immediately disappear when I switch off the TV with the TV remote control.
So I have the feeling it is not important what UPnP device we consider.

All this means that the only difficulty is to get the UDN of the UPnP device. When the thing is created from the Paper UI inbox, that is easy because this UDN is a property of the thing. When the thing is created manually (my current case), this property is unset.

I will let you know a soon as I have something finsihed.

@sprehn
Copy link
Contributor Author

sprehn commented Mar 7, 2020

I own a LG TV since recently, I will start UPnP Spy to understand this stuff with UPnP devices/services from LG and then I can help you. By the way, this will be the occasion to give you a feedback on your binding.

@lolodomo cool, help is welcome.

My Upnp knowledge is not so deep as yours. Maybe we can change the device classes on which the binding listens to org:device:MediaRenderer and then DiscoveryListener:thingRemoved would be called on shutdown.
It is just that MediaRenderer is a very generic device class. We'd have to check for additional meta data to identify LGWebOS devices. This is what worries me.

@TravisBuddy
Copy link

Travis tests were successful

Hey @sprehn,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 7, 2020

Could you please suppress the shutdown detection from this PR ?
You just have to suppress the new class LGWebOSUpnpShutdownDetector.
I will provide a PR for a proper detection.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 7, 2020

My Upnp knowledge is not so deep as yours. Maybe we can change the device classes on which the binding listens to org:device:MediaRenderer and then DiscoveryListener:thingRemoved would be called on shutdown.
It is just that MediaRenderer is a very generic device class. We'd have to check for additional meta data to identify LGWebOS devices. This is what worries me.

I think this is not very important at this step what UPnP device we consider because they all appear and disappear at the same time and because UPnP is used at its minimum by the binding, just for thing discovery and to help detecting if the TV is off or on.. So the one you consider is OK for me.

If UPnP was used for something else (run UPnP actions), in this case, we should consider the device urn:schemas-upnp-org:device:MediaRenderer:1. In this case, for the discoery, we could search strings "LG" and "webOS" in the device friendly name. But apparently, all the available actions are already covered through the web socket API. So I don't think we need UPnP for TV control.

@lolodomo
Copy link
Contributor

lolodomo commented Mar 7, 2020

@sprehn : I have the feeling we could detect the TV OFF easily, even without UPnP.
With my TV, when I switch it off, I receive immediately an appInfo with an empty id from the appLauncher subascription. That could be the perfect trigger.
Is it the same with your own TV ?
In this case, this is only 3 lines to add to one of my other PR to switch the power channel off.

@sprehn
Copy link
Contributor Author

sprehn commented Mar 7, 2020

empty application was already discussed in the community. however it can also be empty when switching between apps takes slightly longer. so this was ruled out

@lolodomo
Copy link
Contributor

lolodomo commented Mar 7, 2020

empty application was already discussed in the community. however it can also be empty when switching between apps takes slightly longer. so this was ruled out

Zut, it looked like a good solution and I already have pushed the change. I just reverted it now.

@TravisBuddy
Copy link

Travis tests have failed

Hey @sprehn,
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.

1st Build

Expand here
Build all
  1/246| openHAB Add-ons 2.5.3-SNAPSHOT
  2/246| openHAB Add-ons :: BOM 2.5.3-SNAPSHOT
  3/246| openHAB Add-ons :: BOM :: Runtime Index 2.5.3-SNAPSHOT
  4/246| openHAB Add-ons :: BOM :: Test Index 2.5.3-SNAPSHOT
  5/246| openHAB Add-ons :: BOM :: openHAB Core Index 2.5.3-SNAPSHOT
  6/246| openHAB Add-ons :: Bundles 2.5.3-SNAPSHOT
  7/246| openHAB Add-ons :: Bundles :: Airquality Binding 2.5.3-SNAPSHOT
  8/246| openHAB Add-ons :: Bundles :: AirVisual Node Air Quality Monitor Binding 2.5.3-SNAPSHOT
  9/246| openHAB Add-ons :: Bundles :: AllPlay Binding 2.5.3-SNAPSHOT
 10/246| openHAB Add-ons :: Bundles :: Amazon Dash Button Binding 2.5.3-SNAPSHOT
 11/246| openHAB Add-ons :: Bundles :: Amazon Echo Control Binding 2.5.3-SNAPSHOT
 12/246| openHAB Add-ons :: Bundles :: Ambient Weather Binding 2.5.3-SNAPSHOT
 13/246| openHAB Add-ons :: Bundles :: Astro Binding 2.5.3-SNAPSHOT
 14/246| openHAB Add-ons :: Bundles :: Atlona Binding 2.5.3-SNAPSHOT
 15/246| openHAB Add-ons :: Bundles :: Autelis Binding 2.5.3-SNAPSHOT
 16/246| openHAB Add-ons :: Bundles :: AVM FRITZ! Binding 2.5.3-SNAPSHOT
 17/246| openHAB Add-ons :: Bundles :: BigAssFan Binding 2.5.3-SNAPSHOT
 18/246| openHAB Add-ons :: Bundles :: Bluetooth Binding 2.5.3-SNAPSHOT
 19/246| openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter 2.5.3-SNAPSHOT
 20/246| openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter 2.5.3-SNAPSHOT
 21/246| openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter 2.5.3-SNAPSHOT
 22/246| openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter 2.5.3-SNAPSHOT
 23/246| openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter 2.5.3-SNAPSHOT
 24/246| openHAB Add-ons :: Bundles :: Bosch Indego Binding 2.5.3-SNAPSHOT
 25/246| openHAB Add-ons :: Bundles :: BoseSoundTouch Binding 2.5.3-SNAPSHOT
 26/246| openHAB Add-ons :: Bundles :: Buienradar Binding 2.5.3-SNAPSHOT
 27/246| openHAB Add-ons :: Bundles :: Chromecast Binding 2.5.3-SNAPSHOT
 28/246| openHAB Add-ons :: Bundles :: CM11A Binding 2.5.3-SNAPSHOT
 29/246| openHAB Add-ons :: Bundles :: CoolMasterNet Binding 2.5.3-SNAPSHOT
 30/246| openHAB Add-ons :: Bundles :: Daikin Binding 2.5.3-SNAPSHOT
 31/246| openHAB Add-ons :: Bundles :: Dark Sky Binding 2.5.3-SNAPSHOT
 32/246| openHAB Add-ons :: Bundles :: Dresden Elektronik deCONZ Binding 2.5.3-SNAPSHOT
 33/246| openHAB Add-ons :: Bundles :: Denon / Marantz Binding 2.5.3-SNAPSHOT
 34/246| openHAB Add-ons :: Bundles :: Digiplex/EVO Binding 2.5.3-SNAPSHOT
 35/246| openHAB Add-ons :: Bundles :: DigitalSTROM Binding 2.5.3-SNAPSHOT
 36/246| openHAB Add-ons :: Bundles :: D-Link Smart Home Binding 2.5.3-SNAPSHOT
 37/246| openHAB Add-ons :: Bundles :: DMX Binding 2.5.3-SNAPSHOT
 38/246| openHAB Add-ons :: Bundles :: Doorbird Binding 2.5.3-SNAPSHOT
 39/246| openHAB Add-ons :: Bundles :: DSCAlarm Binding 2.5.3-SNAPSHOT
 40/246| openHAB Add-ons :: Bundles :: DSMR Binding 2.5.3-SNAPSHOT
 41/246| openHAB Add-ons :: Bundles :: DwdUnwetter Binding 2.5.3-SNAPSHOT
 42/246| openHAB Add-ons :: Bundles :: EleroTransmitterStick Binding 2.5.3-SNAPSHOT
 43/246| openHAB Add-ons :: Bundles :: EnOcean Binding 2.5.3-SNAPSHOT
​ 44/246| openHAB Add-ons :: Bundles :: EnturNo Binding 2.5.3-SNAPSHOT
 45/246| openHAB Add-ons :: Bundles :: evohome Binding 2.5.3-SNAPSHOT
 46/246| openHAB Add-ons :: Bundles :: Exec Binding 2.5.3-SNAPSHOT
 47/246| openHAB Add-ons :: Bundles :: Feed Binding 2.5.3-SNAPSHOT
 48/246| openHAB Add-ons :: Bundles :: Feican Binding 2.5.3-SNAPSHOT
 49/246| openHAB Add-ons :: Bundles :: Folding Binding 2.5.3-SNAPSHOT
 50/246| openHAB Add-ons :: Bundles :: Foobot Binding 2.5.3-SNAPSHOT
 51/246| openHAB Add-ons :: Bundles :: Freebox Binding 2.5.3-SNAPSHOT
 52/246| openHAB Add-ons :: Bundles :: Fronius Binding 2.5.3-SNAPSHOT
 53/246| openHAB Add-ons :: Bundles :: FSInternetRadio Binding 2.5.3-SNAPSHOT
 54/246| openHAB Add-ons :: Bundles :: FTP Upload Binding 2.5.3-SNAPSHOT
 55/246| openHAB Add-ons :: Bundles :: Gardena Binding 2.5.3-SNAPSHOT
 56/246| openHAB Add-ons :: Bundles :: Transformation Service :: Map 2.5.3-SNAPSHOT
 57/246| openHAB Add-ons :: Bundles :: GlobalCache Binding 2.5.3-SNAPSHOT
 58/246| openHAB Add-ons :: Bundles :: GPSTracker Binding 2.5.3-SNAPSHOT
 59/246| openHAB Add-ons :: Bundles :: GROHE ONDUS Binding 2.5.3-SNAPSHOT
 60/246| openHAB Add-ons :: Bundles :: HarmonyHub Binding 2.5.3-SNAPSHOT
 61/246| openHAB Add-ons :: Bundles :: HDanywhere Binding 2.5.3-SNAPSHOT
 62/246| openHAB Add-ons :: Bundles :: Hunter Douglas PowerView Binding 2.5.3-SNAPSHOT
 63/246| openHAB Add-ons :: Bundles :: Helios Binding 2.5.3-SNAPSHOT
 64/246| openHAB Add-ons :: Bundles :: Heos Binding 2.5.3-SNAPSHOT
 65/246| openHAB Add-ons :: Bundles :: Homematic Binding 2.5.3-SNAPSHOT
 66/246| openHAB Add-ons :: Bundles :: HP Printer Binding 2.5.3-SNAPSHOT
 67/246| openHAB Add-ons :: Bundles :: hue Binding 2.5.3-SNAPSHOT
 68/246| openHAB Add-ons :: Bundles :: Hydrawise Binding 2.5.3-SNAPSHOT
 69/246| openHAB Add-ons :: Bundles :: Hyperion Binding 2.5.3-SNAPSHOT
 70/246| openHAB Add-ons :: Bundles :: iAquaLink Binding 2.5.3-SNAPSHOT
 71/246| openHAB Add-ons :: Bundles :: iCloud Binding 2.5.3-SNAPSHOT
 72/246| openHAB Add-ons :: Bundles :: IHC Binding 2.5.3-SNAPSHOT
 73/246| openHAB Add-ons :: Bundles :: innogy Smarthome Binding 2.5.3-SNAPSHOT
 74/246| openHAB Add-ons :: Bundles :: IPP Binding 2.5.3-SNAPSHOT
 75/246| openHAB Add-ons :: Bundles :: IRtrans Binding 2.5.3-SNAPSHOT
 76/246| openHAB Add-ons :: Bundles :: JeeLink Binding 2.5.3-SNAPSHOT
 77/246| openHAB Add-ons :: Bundles :: Keba Binding 2.5.3-SNAPSHOT
 78/246| openHAB Add-ons :: Bundles :: KM200 Binding 2.5.3-SNAPSHOT
 79/246| openHAB Add-ons :: Bundles :: KNX Binding 2.5.3-SNAPSHOT
 80/246| openHAB Add-ons :: Bundles :: Kodi Binding 2.5.3-SNAPSHOT
 81/246| openHAB Add-ons :: Bundles :: Konnected Binding 2.5.3-SNAPSHOT
 82/246| openHAB Add-ons :: Bundles :: Kostal Binding 2.5.3-SNAPSHOT
 83/246| openHAB Add-ons :: Bundles :: LaMetric Time Binding 2.5.3-SNAPSHOT
 84/246| openHAB Add-ons :: Bundles :: Leap Motion Binding 2.5.3-SNAPSHOT
 85/246| openHAB Add-ons :: Bundles :: LG HomBot Binding 2.5.3-SNAPSHOT
 86/246| openHAB Add-ons :: Bundles :: LG TV Serial Binding 2.5.3-SNAPSHOT
 87/246| openHAB Add-ons :: Bundles :: LG webOS Binding 2.5.3-SNAPSHOT
 88/246| openHAB Add-ons :: Bundles :: LIFX Binding 2.5.3-SNAPSHOT
 89/246| openHAB Add-ons :: Bundles :: LIRC Binding 2.5.3-SNAPSHOT
 90/246| openHAB Add-ons :: Bundles :: LinuxInput Binding 2.5.3-SNAPSHOT
 91/246| openHAB Add-ons :: Bundles :: Log Reader Binding 2.5.3-SNAPSHOT
 92/246| openHAB Add-ons :: Bundles :: Loxone Binding 2.5.3-SNAPSHOT
 93/246| openHAB Add-ons :: Bundles :: Lutron Binding 2.5.3-SNAPSHOT
 94/246| openHAB Add-ons :: Bundles :: Mail Binding 2.5.3-SNAPSHOT
 95/246| openHAB Add-ons :: Bundles :: MaxCube Binding 2.5.3-SNAPSHOT
 96/246| openHAB Add-ons :: Bundles :: mcp23017 Binding 2.5.3-SNAPSHOT
 97/246| openHAB Add-ons :: Bundles :: MELCloud Binding 2.5.3-SNAPSHOT
 98/246| openHAB Add-ons :: Bundles :: meteoblue Binding 2.5.3-SNAPSHOT
 99/246| openHAB Add-ons :: Bundles :: meteostick Binding 2.5.3-SNAPSHOT
100/246| openHAB Add-ons :: Bundles :: Miele Binding 2.5.3-SNAPSHOT
101/246| openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Home Binding 2.5.3-SNAPSHOT
102/246| openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding 2.5.3-SNAPSHOT
103/246| openHAB Add-ons :: Bundles :: Millheat Binding 2.5.3-SNAPSHOT
104/246| openHAB Add-ons :: Bundles :: Milight Binding 2.5.3-SNAPSHOT
105/246| openHAB Add-ons :: Bundles :: Minecraft Binding 2.5.3-SNAPSHOT
​106/246| openHAB Add-ons :: Bundles :: IO :: Modbus Transport 2.5.3-SNAPSHOT
107/246| openHAB Add-ons :: Bundles :: Modbus Binding 2.5.3-SNAPSHOT
108/246| openHAB Add-ons :: Bundles :: MQTT Broker Binding 2.5.3-SNAPSHOT
109/246| openHAB Add-ons :: Bundles :: MQTT Things and Channels 2.5.3-SNAPSHOT
110/246| openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention 2.5.3-SNAPSHOT
111/246| openHAB Add-ons :: Bundles :: MQTT Homie Convention 2.5.3-SNAPSHOT
112/246| openHAB Add-ons :: Bundles :: Nanoleaf Binding 2.5.3-SNAPSHOT
113/246| openHAB Add-ons :: Bundles :: Neato Binding 2.5.3-SNAPSHOT
114/246| openHAB Add-ons :: Bundles :: Neeo Binding 2.5.3-SNAPSHOT
115/246| openHAB Add-ons :: Bundles :: NeoHub Binding 2.5.3-SNAPSHOT
116/246| openHAB Add-ons :: Bundles :: Nest Binding 2.5.3-SNAPSHOT
117/246| openHAB Add-ons :: Bundles :: Netatmo Binding 2.5.3-SNAPSHOT
118/246| openHAB Add-ons :: Bundles :: Network Binding 2.5.3-SNAPSHOT
119/246| openHAB Add-ons :: Bundles :: Network UPS Tools Binding 2.5.3-SNAPSHOT
120/246| openHAB Add-ons :: Bundles :: Nibe Heatpump Binding 2.5.3-SNAPSHOT
121/246| openHAB Add-ons :: Bundles :: NibeUplink Binding 2.5.3-SNAPSHOT
122/246| openHAB Add-ons :: Bundles :: Nikobus Binding 2.5.3-SNAPSHOT
123/246| openHAB Add-ons :: Bundles :: Niko Home Control Binding 2.5.3-SNAPSHOT
124/246| openHAB Add-ons :: Bundles :: NTP Binding 2.5.3-SNAPSHOT
125/246| openHAB Add-ons :: Bundles :: Nuki Binding 2.5.3-SNAPSHOT
126/246| openHAB Add-ons :: Bundles :: Oceanic Binding 2.5.3-SNAPSHOT
127/246| openHAB Add-ons :: Bundles :: OmnikInverter Binding 2.5.3-SNAPSHOT
128/246| openHAB Add-ons :: Bundles :: OneBusAway Binding 2.5.3-SNAPSHOT
129/246| openHAB Add-ons :: Bundles :: OneWireGPIO Binding 2.5.3-SNAPSHOT
130/246| openHAB Add-ons :: Bundles :: OneWire Binding 2.5.3-SNAPSHOT
131/246| openHAB Add-ons :: Bundles :: Onkyo Binding 2.5.3-SNAPSHOT
132/246| openHAB Add-ons :: Bundles :: OpenGarage Binding 2.5.3-SNAPSHOT
133/246| openHAB Add-ons :: Bundles :: OpenSprinkler Binding 2.5.3-SNAPSHOT
134/246| openHAB Add-ons :: Bundles :: OpenUV Binding 2.5.3-SNAPSHOT
135/246| openHAB Add-ons :: Bundles :: OpenWeatherMap Binding 2.5.3-SNAPSHOT
136/246| openHAB Add-ons :: Bundles :: Orvibo Binding 2.5.3-SNAPSHOT
137/246| openHAB Add-ons :: Bundles :: ParadoxAlarm Binding 2.5.3-SNAPSHOT
138/246| openHAB Add-ons :: Bundles :: Pentair Binding 2.5.3-SNAPSHOT
139/246| openHAB Add-ons :: Bundles :: PHC Binding 2.5.3-SNAPSHOT
140/246| openHAB Add-ons :: Bundles :: PioneerAvr Binding 2.5.3-SNAPSHOT
141/246| openHAB Add-ons :: Bundles :: pixometer Binding 2.5.3-SNAPSHOT
142/246| openHAB Add-ons :: Bundles :: PJLink Binding 2.5.3-SNAPSHOT
143/246| openHAB Add-ons :: Bundles :: PLCLogo Binding 2.5.3-SNAPSHOT
144/246| openHAB Add-ons :: Bundles :: Plugwise Binding 2.5.3-SNAPSHOT
145/246| openHAB Add-ons :: Bundles :: Powermax Binding 2.5.3-SNAPSHOT
146/246| openHAB Add-ons :: Bundles :: Pulseaudio Binding 2.5.3-SNAPSHOT
147/246| openHAB Add-ons :: Bundles :: Pushbullet Binding 2.5.3-SNAPSHOT
148/246| openHAB Add-ons :: Bundles :: RegoHeatPump Binding 2.5.3-SNAPSHOT
149/246| openHAB Add-ons :: Bundles :: Rfxcom Binding 2.5.3-SNAPSHOT
150/246| openHAB Add-ons :: Bundles :: RME Binding 2.5.3-SNAPSHOT
151/246| openHAB Add-ons :: Bundles :: Robonect Binding 2.5.3-SNAPSHOT
152/246| openHAB Add-ons :: Bundles :: Rotel Binding 2.5.3-SNAPSHOT
153/246| openHAB Add-ons :: Bundles :: RotelRa1x Binding 2.5.3-SNAPSHOT
154/246| openHAB Add-ons :: Bundles :: Russound Binding 2.5.3-SNAPSHOT
155/246| openHAB Add-ons :: Bundles :: SamsungTV Binding 2.5.3-SNAPSHOT
156/246| openHAB Add-ons :: Bundles :: Satel Binding 2.5.3-SNAPSHOT
157/246| openHAB Add-ons :: Bundles :: Seneye Binding 2.5.3-SNAPSHOT
158/246| openHAB Add-ons :: Bundles :: senseBox Binding 2.5.3-SNAPSHOT
159/246| openHAB Add-ons :: Bundles :: SerialButton Binding 2.5.3-SNAPSHOT
160/246| openHAB Add-ons :: Bundles :: Shelly Binding 2.5.3-SNAPSHOT
161/246| openHAB Add-ons :: Bundles :: Siemens RDS Binding 2.5.3-SNAPSHOT
162/246| openHAB Add-ons :: Bundles :: Sinope Binding 2.5.3-SNAPSHOT
163/246| openHAB Add-ons :: Bundles :: Silvercrest Wifi Socket Binding 2.5.3-SNAPSHOT
164/246| openHAB Add-ons :: Bundles :: SleepIQ Binding 2.5.3-SNAPSHOT
​165/246| openHAB Add-ons :: Bundles :: SMA EnergyMeter Binding 2.5.3-SNAPSHOT
166/246| openHAB Add-ons :: Bundles :: Smartmeter Binding 2.5.3-SNAPSHOT
167/246| openHAB Add-ons :: Bundles :: SNMP Binding 2.5.3-SNAPSHOT
168/246| openHAB Add-ons :: Bundles :: SolarEdge Binding 2.5.3-SNAPSHOT
169/246| openHAB Add-ons :: Bundles :: Solar-Log Binding 2.5.3-SNAPSHOT
170/246| openHAB Add-ons :: Bundles :: SomfyTahoma Binding 2.5.3-SNAPSHOT
171/246| openHAB Add-ons :: Bundles :: Sonos Binding 2.5.3-SNAPSHOT
172/246| openHAB Add-ons :: Bundles :: SonyAudio Binding 2.5.3-SNAPSHOT
173/246| openHAB Add-ons :: Bundles :: Sony Projector Binding 2.5.3-SNAPSHOT
174/246| openHAB Add-ons :: Bundles :: Spotify Binding 2.5.3-SNAPSHOT
175/246| openHAB Add-ons :: Bundles :: SqueezeBox Binding 2.5.3-SNAPSHOT
176/246| openHAB Add-ons :: Bundles :: Synop Analyzer Binding 2.5.3-SNAPSHOT
177/246| openHAB Add-ons :: Bundles :: Systeminfo Binding 2.5.3-SNAPSHOT
178/246| openHAB Add-ons :: Bundles :: Tado Binding 2.5.3-SNAPSHOT
179/246| openHAB Add-ons :: Bundles :: Tankerkoenig Binding 2.5.3-SNAPSHOT
180/246| openHAB Add-ons :: Bundles :: Telegram Binding 2.5.3-SNAPSHOT
181/246| openHAB Add-ons :: Bundles :: Tellstick Binding 2.5.3-SNAPSHOT
182/246| openHAB Add-ons :: Bundles :: Tesla Binding 2.5.3-SNAPSHOT
183/246| openHAB Add-ons :: Bundles :: TP-Link Smart Home Binding 2.5.3-SNAPSHOT
184/246| openHAB Add-ons :: Bundles :: TRÅDFRI Binding 2.5.3-SNAPSHOT
185/246| openHAB Add-ons :: Bundles :: UniFi Binding 2.5.3-SNAPSHOT
186/246| openHAB Add-ons :: Bundles :: Somfy URTSI II binding 2.5.3-SNAPSHOT
187/246| openHAB Add-ons :: Bundles :: ValloxMV Binding 2.5.3-SNAPSHOT
188/246| openHAB Add-ons :: Bundles :: Vektiva Binding 2.5.3-SNAPSHOT
189/246| openHAB Add-ons :: Bundles :: Volvo On Call Binding 2.5.3-SNAPSHOT
190/246| openHAB Add-ons :: Bundles :: Velbus Binding 2.5.3-SNAPSHOT
191/246| openHAB Add-ons :: Bundles :: Velux Binding 2.5.3-SNAPSHOT
192/246| openHAB Add-ons :: Bundles :: Vitotronic Binding 2.5.3-SNAPSHOT
193/246| openHAB Add-ons :: Bundles :: WeatherCompany Binding 2.5.3-SNAPSHOT
194/246| openHAB Add-ons :: Bundles :: WeatherUnderground Binding 2.5.3-SNAPSHOT
195/246| openHAB Add-ons :: Bundles :: Wemo Binding 2.5.3-SNAPSHOT
196/246| openHAB Add-ons :: Bundles :: WiFiLED Binding 2.5.3-SNAPSHOT
197/246| openHAB Add-ons :: Bundles :: Windcentrale Binding 2.5.3-SNAPSHOT
198/246| openHAB Add-ons :: Bundles :: XMLTV Binding 2.5.3-SNAPSHOT
199/246| openHAB Add-ons :: Bundles :: XMPPClient Binding 2.5.3-SNAPSHOT
200/246| openHAB Add-ons :: Bundles :: Yamaha Receiver Binding 2.5.3-SNAPSHOT
201/246| openHAB Add-ons :: Bundles :: Yeelight Binding 2.5.3-SNAPSHOT
202/246| openHAB Add-ons :: Bundles :: Zoneminder Binding 2.5.3-SNAPSHOT
203/246| openHAB Add-ons :: Bundles :: ZWay Binding 2.5.3-SNAPSHOT
204/246| openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace 2.5.3-SNAPSHOT
205/246| openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace (Automation) 2.5.3-SNAPSHOT
206/246| openHAB Add-ons :: Bundles :: IO :: Homekit 2.5.3-SNAPSHOT
207/246| openHAB Add-ons :: Bundles :: IO :: Hue Emulation Service 2.5.3-SNAPSHOT
208/246| openHAB Add-ons :: Bundles :: IO :: ImperiHome Integration Service 2.5.3-SNAPSHOT
209/246| openHAB Add-ons :: Bundles :: IO :: Java Sound Support 2.5.3-SNAPSHOT
210/246| openHAB Add-ons :: Bundles :: IO :: NEEO Integration 2.5.3-SNAPSHOT
211/246| openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector 2.5.3-SNAPSHOT
212/246| openHAB Add-ons :: Bundles :: IO :: MQTT Broker Moquette 2.5.3-SNAPSHOT
​213/246| openHAB Add-ons :: Bundles :: IO :: Web Audio Support 2.5.3-SNAPSHOT
214/246| openHAB Add-ons :: Bundles :: Persistence Service :: MapDB 2.5.3-SNAPSHOT
215/246| openHAB Add-ons :: Bundles :: Transformation Service :: Binary To JSON 2.5.3-SNAPSHOT
216/246| openHAB Add-ons :: Bundles :: Transformation Service :: Exec 2.5.3-SNAPSHOT
217/246| openHAB Add-ons :: Bundles :: Transformation Service :: JavaScript 2.5.3-SNAPSHOT
218/246| openHAB Add-ons :: Bundles :: Transformation Service :: Jinja 2.5.3-SNAPSHOT
219/246| openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath 2.5.3-SNAPSHOT
220/246| openHAB Add-ons :: Bundles :: Transformation Service :: RegEx 2.5.3-SNAPSHOT
221/246| openHAB Add-ons :: Bundles :: Transformation Service :: Scale 2.5.3-SNAPSHOT
222/246| openHAB Add-ons :: Bundles :: Transformation Service :: XPath 2.5.3-SNAPSHOT
223/246| openHAB Add-ons :: Bundles :: Transformation Service :: Xslt 2.5.3-SNAPSHOT
224/246| openHAB Add-ons :: Bundles :: Voice :: Google Cloud Text-to-Speech 2.5.3-SNAPSHOT
225/246| openHAB Add-ons :: Bundles :: Voice :: macOS Text-to-Speech 2.5.3-SNAPSHOT
226/246| openHAB Add-ons :: Bundles :: Voice :: Mary Text-to-Speech 2.5.3-SNAPSHOT
227/246| openHAB Add-ons :: Bundles :: Voice :: Pico Text-to-Speech 2.5.3-SNAPSHOT
228/246| openHAB Add-ons :: Bundles :: Voice :: Polly Text-to-Speech 2.5.3-SNAPSHOT
229/246| openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech 2.5.3-SNAPSHOT
230/246| openHAB Add-ons :: BOM :: openHAB Add-ons 2.5.3-SNAPSHOT
231/246| openHAB Add-ons :: Features :: Karaf 2.5.3-SNAPSHOT
232/246| openHAB Add-ons :: Features :: Karaf :: Add-ons External 2.5.3-SNAPSHOT
233/246| openHAB Add-ons :: Features :: Karaf :: Add-ons 2.5.3-SNAPSHOT
234/246| openHAB Add-ons :: Integration Tests 2.5.3-SNAPSHOT
235/246| openHAB Add-ons :: Integration Tests :: Astro Binding Tests 2.5.3-SNAPSHOT
236/246| openHAB Add-ons :: Integration Tests :: AVM FRITZ! Binding Tests 2.5.3-SNAPSHOT
237/246| openHAB Add-ons :: Integration Tests :: Feed Binding Tests 2.5.3-SNAPSHOT
​238/246| openHAB Add-ons :: Integration Tests :: hue Binding Tests 2.5.3-SNAPSHOT
239/246| openHAB Add-ons :: Integration Tests :: MaxCube Binding Tests 2.5.3-SNAPSHOT
240/246| openHAB Add-ons :: Integration Tests :: Nest Binding Tests 2.5.3-SNAPSHOT
241/246| openHAB Add-ons :: Integration Tests :: NTP Binding Tests 2.5.3-SNAPSHOT
242/246| openHAB Add-ons :: Integration Tests :: Systeminfo Binding Tests 2.5.3-SNAPSHOT
243/246| openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding 2.5.3-SNAPSHOT
244/246| openHAB Add-ons :: Integration Tests :: Wemo Binding Tests 2.5.3-SNAPSHOT
245/246| openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests 2.5.3-SNAPSHOT
​14:15:56.853 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:56.854 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:56.854 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:56.854 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:56.855 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_swap_total -> systeminfo:computer:work:swap#total from ManagedItemChannelLinkProvider.
14:15:56.856 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
14:15:56.856 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
14:15:56.856 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
14:15:56.856 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
14:15:56.857 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
14:15:56.858 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:56.858 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:56.858 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
14:15:56.859 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
14:15:56.859 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
14:15:56.859 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
14:15:56.860 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.ManagedThingProvider" has been added.
14:15:56.861 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.link.ManagedItemChannelLinkProvider" has been added.
14:15:56.861 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.internal.ChannelItemProvider" has been added.
14:15:56.862 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' added
14:15:56.863 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl" has been added.
14:15:56.863 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.items.ManagedItemProvider" has been added.
14:15:56.866 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is tracked by ThingManager.
14:15:56.866 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling 'SysteminfoHandlerFactory.registerHandler()' for thing 'systeminfo:computer:work'.
14:15:56.866 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work' needs [], has [interval_high, interval_medium].
14:15:56.866 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work:memory#available' needs [], has [priority, pid].
14:15:56.867 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling initialize handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@61149fa5'.
14:15:56.867 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:56.867 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:56.867 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:56.868 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:56.868 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:56.869 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start initializing!
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Systeminfo implementation is instantiated!
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start reading Thing configuration.
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for medium priority channels set to 3 s
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for high priority channels set to 1 s
14:15:56.870 [safeCall-1] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Updated element systeminfo:computer:work in ManagedThingProvider.
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Properties updated!
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule high priority tasks at fixed rate 1 s.
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule medium priority tasks at fixed rate 3 s.
14:15:56.870 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule one time update for low priority tasks.
14:15:56.871 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Thing is successfully initialized!
14:15:56.871 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_memory_available -> systeminfo:computer:work:memory#available to ManagedItemChannelLinkProvider.
14:15:56.871 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
14:15:56.871 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
14:15:56.871 [OH-thingLinkManager-2] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:memory#available!
14:15:56.871 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:memory#available to ManagedItemChannelLinkProvider.
14:15:57.872 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
14:15:57.872 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@61149fa5'.
14:15:57.872 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.873 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.873 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.873 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.873 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.878 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
14:15:57.878 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
14:15:57.878 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@25d0cb3a'.
14:15:57.880 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:57.880 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:57.880 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:57.880 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:57.880 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:57.881 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:57.882 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_memory_available -> systeminfo:computer:work:memory#available from ManagedItemChannelLinkProvider.
14:15:57.882 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
14:15:57.883 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
14:15:57.883 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
14:15:57.883 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
14:15:57.883 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
14:15:57.883 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:57.884 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:57.884 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
14:15:57.885 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
14:15:57.885 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
14:15:57.885 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
14:15:57.886 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.ManagedThingProvider" has been added.
14:15:57.887 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.link.ManagedItemChannelLinkProvider" has been added.
14:15:57.887 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.internal.ChannelItemProvider" has been added.
14:15:57.888 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' added
14:15:57.889 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl" has been added.
14:15:57.889 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.items.ManagedItemProvider" has been added.
14:15:57.892 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is tracked by ThingManager.
14:15:57.892 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling 'SysteminfoHandlerFactory.registerHandler()' for thing 'systeminfo:computer:work'.
14:15:57.893 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work' needs [], has [interval_high, interval_medium].
14:15:57.893 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work:drive#name' needs [], has [priority, pid].
14:15:57.893 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling initialize handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@54af3cb9'.
14:15:57.906 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.907 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.907 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.907 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.907 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:57.909 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start initializing!
14:15:57.909 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Systeminfo implementation is instantiated!
14:15:57.909 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start reading Thing configuration.
14:15:57.909 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for medium priority channels set to 3 s
14:15:57.909 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for high priority channels set to 1 s
14:15:57.910 [safeCall-1] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Updated element systeminfo:computer:work in ManagedThingProvider.
14:15:57.910 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Properties updated!
14:15:57.910 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule high priority tasks at fixed rate 1 s.
14:15:57.910 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule medium priority tasks at fixed rate 3 s.
14:15:57.910 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule one time update for low priority tasks.
14:15:57.910 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Thing is successfully initialized!
14:15:57.911 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_drive_name -> systeminfo:computer:work:drive#name to ManagedItemChannelLinkProvider.
14:15:57.911 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
14:15:57.911 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
14:15:57.911 [OH-thingLinkManager-5] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:drive#name!
14:15:57.911 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:drive#name to ManagedItemChannelLinkProvider.
14:15:58.911 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
14:15:58.912 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@54af3cb9'.
14:15:58.912 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.912 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.913 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.913 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.913 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.915 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
14:15:58.915 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
14:15:58.915 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@25d0cb3a'.
14:15:58.917 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:58.917 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:58.917 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:58.917 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:58.917 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:58.917 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:58.919 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_drive_name -> systeminfo:computer:work:drive#name from ManagedItemChannelLinkProvider.
14:15:58.919 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
14:15:58.919 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
14:15:58.919 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
14:15:58.919 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
14:15:58.919 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
14:15:58.920 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:58.920 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:58.927 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
14:15:58.930 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
14:15:58.930 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
14:15:58.930 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
14:15:58.931 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.ManagedThingProvider" has been added.
14:15:58.931 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.link.ManagedItemChannelLinkProvider" has been added.
14:15:58.938 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.internal.ChannelItemProvider" has been added.
14:15:58.939 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' added
14:15:58.940 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl" has been added.
14:15:58.940 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.items.ManagedItemProvider" has been added.
14:15:58.943 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is tracked by ThingManager.
14:15:58.944 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling 'SysteminfoHandlerFactory.registerHandler()' for thing 'systeminfo:computer:work'.
14:15:58.944 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work' needs [], has [interval_high, interval_medium].
14:15:58.944 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work:storage#available' needs [], has [priority, pid].
14:15:58.944 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling initialize handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@172f4514'.
14:15:58.944 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.945 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.945 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.945 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.945 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:58.947 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start initializing!
14:15:58.947 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Systeminfo implementation is instantiated!
14:15:58.947 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start reading Thing configuration.
14:15:58.947 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for medium priority channels set to 3 s
14:15:58.947 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for high priority channels set to 1 s
14:15:58.948 [safeCall-1] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Updated element systeminfo:computer:work in ManagedThingProvider.
14:15:58.948 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Properties updated!
14:15:58.948 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule high priority tasks at fixed rate 1 s.
14:15:58.948 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule medium priority tasks at fixed rate 3 s.
14:15:58.948 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule one time update for low priority tasks.
14:15:58.948 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Thing is successfully initialized!
14:15:58.958 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_storage_available -> systeminfo:computer:work:storage#available to ManagedItemChannelLinkProvider.
14:15:58.958 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
14:15:58.958 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
14:15:58.959 [OH-thingLinkManager-3] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:storage#available!
14:15:58.960 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:storage#available to ManagedItemChannelLinkProvider.
14:15:59.960 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
14:15:59.960 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@172f4514'.
14:15:59.961 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:59.961 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:59.961 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:59.961 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:59.961 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler]"
14:15:59.963 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
14:15:59.963 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
14:15:59.963 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@25d0cb3a'.
14:15:59.965 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:59.965 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:59.965 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:59.965 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:59.966 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:59.966 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@62a018a0[org.openhab.binding.systeminfo:2.5.3.202003071408(id=43)]" for "[class org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory]"
14:15:59.967 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_storage_available -> systeminfo:computer:work:storage#available from ManagedItemChannelLinkProvider.
14:15:59.967 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
14:15:59.972 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
14:15:59.972 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
14:15:59.972 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
14:15:59.973 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
14:15:59.973 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:59.974 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
14:15:59.974 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
14:15:59.980 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
14:15:59.980 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
14:15:59.980 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
Tests run  : 53
Passed     : 53
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.systeminfo.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.systeminfo.tests/target/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.systeminfo.tests/2.5.3-SNAPSHOT/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.systeminfo.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.systeminfo.tests/2.5.3-SNAPSHOT/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ----< org.openhab.addons.itests:org.openhab.binding.tradfri.tests >-----
[INFO] Building openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding 2.5.3-SNAPSHOT [243/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.binding.tradfri.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.binding.tradfri.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.binding.tradfri.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.binding.tradfri.tests ---
[INFO] Changes detected - recompiling the module!
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.binding.tradfri.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.binding.tradfri.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.binding.tradfri.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.binding.tradfri.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.binding.tradfri.tests ---
[INFO] Matching glob *
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index/org.apache.servicemix.bundles.xstream-1.4.7.1.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
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
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for javax.measure.unit-api_1.0.0 [1] []
required wires for org.apache.commons.io_2.2.0 [2] []
required wires for org.apache.commons.lang_2.6.0 [3] []
required wires for org.apache.felix.configadmin_1.9.8 [4] []
required wires for org.apache.felix.scr_2.1.10 [5] []
required wires for org.osgi.service.event_1.4.0.201802012106 [6] []
required wires for org.openhab.core_2.5.0 [7] []
required wires for org.openhab.core.config.core_2.5.0 [8] []
required wires for ch.qos.logback.core_1.2.3 [9] []
required wires for org.openhab.core.config.discovery_2.5.0 [10] []
required wires for org.openhab.core.io.console_2.5.0 [11] []
required wires for org.openhab.core.thing_2.5.0 [12] []
required wires for slf4j.api_1.7.25 [13] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [14] []
required wires for com.google.gson_2.8.2.v20180104-1110 [15] []
required wires for javax.jmdns_3.5.5 [16] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [17] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [18] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [19] []
required wires for org.openhab.core.config.discovery.mdns_2.5.0 [20] []
required wires for org.openhab.core.io.transport.mdns_2.5.0 [21] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [22] []
required wires for org.objenesis_2.6.0 [23] []
required wires for org.openhab.core.test_2.5.0 [24] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [25] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [26] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [27] []
required wires for org.openhab.core.binding.xml_2.5.0 [28] []
required wires for org.openhab.core.config.xml_2.5.0 [29] []
required wires for org.openhab.core.thing.xml_2.5.0 [30] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [31] []
required wires for tec.uom.se_1.0.10 [32] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [33] []
required wires for net.bytebuddy.byte-buddy_1.9.10 [34] []
required wires for net.bytebuddy.byte-buddy-agent_1.9.10 [35] []
required wires for org.mockito.mockito-core_3.1.0 [36] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [37] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [38] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [39] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [40] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [41] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [42] []
required wires for org.eclipse.californium.core_2.0.0 [43] []
required wires for org.eclipse.californium.element-connector_2.0.0 [44] []
required wires for org.eclipse.californium.scandium_2.0.0 [45] []
required wires for org.openhab.binding.tradfri_2.5.3.202003071408 [46] []
required wires for org.openhab.binding.tradfri.tests_2.5.3.202003071416 [47] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.tradfri)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003071408"; osgi.wiring.host="org.openhab.binding.tradfri"]
required wires for slf4j.simple_1.7.21 [48] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for biz.aQute.tester_4.3.0.201909301554 [49] []
required wires for org.openhab.binding.tradfri.tests_2.5.3.202003071416 [47] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.tradfri)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003071408"; osgi.wiring.host="org.openhab.binding.tradfri"]
[safeCall-2] INFO org.eclipse.californium.scandium.dtls.InMemoryConnectionStore - Created new InMemoryConnectionStore [capacity: 100, connection expiration threshold: 60s]
[safeCall-2] INFO org.eclipse.californium.core.network.config.NetworkConfig - writing properties to file /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/test/tmp/testing/itest/Californium.properties
[safeCall-2] INFO org.eclipse.californium.core.network.RandomTokenGenerator - using tokens of 8 bytes in length
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps CoapEndpoint uses strict context
[safeCall-2] INFO org.eclipse.californium.core.network.stack.BlockwiseLayer - BlockwiseLayer uses MAX_MESSAGE_SIZE=1024, PREFERRED_BLOCK_SIZE=512, BLOCKWISE_STATUS_LIFETIME=300000, MAX_RESOURCE_BODY_SIZE=8192, BLOCKWISE_STRICT_BLOCK2_OPTION=false
[safeCall-2] INFO org.eclipse.californium.core.network.stack.ReliabilityLayer - ReliabilityLayer uses ACK_TIMEOUT=2000, ACK_RANDOM_FACTOR=1.5, and ACK_TIMEOUT_SCALE=2.0 as default
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Endpoint [coaps://0.0.0.0:0] requires an executor to start, using default single-threaded daemon executor
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - multiple network interfaces, using smallest MTU [1460]
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - DTLSConnector listening on 0.0.0.0/0.0.0.0:32818, recv buf = 106496, send buf = 106496, recv packet size = 16490, MTU = 1460
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Started endpoint at coaps://0.0.0.0:32818
[safeCall-2] INFO org.eclipse.californium.core.CoapClient - started set client endpoint 0.0.0.0/0.0.0.0:32818
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:32818] INFO org.eclipse.californium.scandium.DTLSConnector - Starting worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:32818]
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Destroying endpoint at coaps://0.0.0.0:32818
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Stopping endpoint at coaps://0.0.0.0:32818
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - Stopping DTLS connector on [0.0.0.0/0.0.0.0:32818]
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:32818] INFO org.eclipse.californium.scandium.DTLSConnector - Worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:32818] has terminated
[safeCall-2] INFO org.eclipse.californium.scandium.dtls.InMemoryConnectionStore - Created new InMemoryConnectionStore [capacity: 100, connection expiration threshold: 60s]
[safeCall-2] INFO org.eclipse.californium.core.network.RandomTokenGenerator - using tokens of 8 bytes in length
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps CoapEndpoint uses strict context
[safeCall-2] INFO org.eclipse.californium.core.network.stack.BlockwiseLayer - BlockwiseLayer uses MAX_MESSAGE_SIZE=1024, PREFERRED_BLOCK_SIZE=512, BLOCKWISE_STATUS_LIFETIME=300000, MAX_RESOURCE_BODY_SIZE=8192, BLOCKWISE_STRICT_BLOCK2_OPTION=false
[safeCall-2] INFO org.eclipse.californium.core.network.stack.ReliabilityLayer - ReliabilityLayer uses ACK_TIMEOUT=2000, ACK_RANDOM_FACTOR=1.5, and ACK_TIMEOUT_SCALE=2.0 as default
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Endpoint [coaps://0.0.0.0:0] requires an executor to start, using default single-threaded daemon executor
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - multiple network interfaces, using smallest MTU [1460]
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - DTLSConnector listening on 0.0.0.0/0.0.0.0:54406, recv buf = 106496, send buf = 106496, recv packet size = 16490, MTU = 1460
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Started endpoint at coaps://0.0.0.0:54406
[safeCall-2] INFO org.eclipse.californium.core.CoapClient - started set client endpoint 0.0.0.0/0.0.0.0:54406
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:54406] INFO org.eclipse.californium.scandium.DTLSConnector - Starting worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:54406]
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Destroying endpoint at coaps://0.0.0.0:54406
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Stopping endpoint at coaps://0.0.0.0:54406
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - Stopping DTLS connector on [0.0.0.0/0.0.0.0:54406]
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:54406] INFO org.eclipse.californium.scandium.DTLSConnector - Worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:54406] has terminated
Tests run  : 7
Passed     : 7
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.tradfri.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.tradfri.tests/2.5.3-SNAPSHOT/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.tradfri.tests/2.5.3-SNAPSHOT/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ------< org.openhab.addons.itests:org.openhab.binding.wemo.tests >------
[INFO] Building openHAB Add-ons :: Integration Tests :: Wemo Binding Tests 2.5.3-SNAPSHOT [244/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.binding.wemo.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.binding.wemo.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.binding.wemo.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.binding.wemo.tests ---
[INFO] Changes detected - recompiling the module!
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[26,803] The type InboxFilterCriteria is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[36,1242] The import org.openhab.binding.wemo.internal.discovery.WemoDiscoveryService is never used
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[76,2493] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[78,2614] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[79,2653] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[83,2763] Potential null pointer access: The variable device may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2988] The method get(InboxFilterCriteria) from the type Inbox is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2996] The type InboxFilterCriteria is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2996] The constructor InboxFilterCriteria(ThingUID, DiscoveryResultFlag) is deprecated
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/test/GenericWemoOSGiTest.java:[118,4936] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull ChannelTypeProvider'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/test/GenericWemoOSGiTest.java:[119,5047] The constructor ChannelType(ChannelTypeUID, boolean, String, ChannelKind, String, String, String, Set<String>, StateDescription, EventDescription, URI) is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoLightHandlerOSGiTest.java:[42,1534] The import org.openhab.binding.wemo.internal.handler.WemoLightHandler is never used
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoHandlerTest.java:[61,2176] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull Thing'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoMakerHandlerOSGiTest.java:[40,1406] The import org.openhab.binding.wemo.internal.handler.WemoMakerHandler is never used
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoLinkDiscoveryServiceOSGiTest.java:[60,2144] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull Bridge'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoLinkDiscoveryServiceOSGiTest.java:[64,2352] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull WemoBridgeHandler'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.binding.wemo.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.binding.wemo.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.binding.wemo.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.binding.wemo.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.binding.wemo.tests ---
[INFO] Matching glob *
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index/org.apache.servicemix.bundles.xstream-1.4.7.1.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
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
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for ch.qos.logback.core_1.2.3 [1] []
required wires for com.google.gson_2.8.2.v20180104-1110 [2] []
required wires for javax.measure.unit-api_1.0.0 [3] []
required wires for org.apache.commons.exec_1.1.0 [4] []
required wires for org.apache.commons.io_2.2.0 [5] []
required wires for org.apache.commons.lang_2.6.0 [6] []
required wires for org.apache.felix.configadmin_1.9.8 [7] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [8] []
required wires for org.apache.felix.scr_2.1.10 [9] []
required wires for org.apache.xbean.bundleutils_4.12.0 [10] []
required wires for org.apache.xbean.finder_4.12.0 [11] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [12] []
required wires for org.jupnp_2.5.2 [13] []
required wires for org.objenesis_2.6.0 [14] []
required wires for org.openhab.core_2.5.0 [15] []
required wires for org.openhab.core.config.core_2.5.0 [16] []
required wires for org.openhab.core.config.discovery_2.5.0 [17] []
required wires for org.openhab.core.config.discovery.upnp_2.5.0 [18] []
required wires for org.openhab.core.io.console_2.5.0 [19] []
required wires for org.openhab.core.io.net_2.5.0 [20] []
required wires for org.openhab.core.io.transport.upnp_2.5.0 [21] []
required wires for org.openhab.core.test_2.5.0 [22] []
required wires for org.openhab.core.thing_2.5.0 [23] []
required wires for org.osgi.service.event_1.4.0.201802012106 [24] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [25] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [26] []
required wires for slf4j.api_1.7.25 [27] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [28] []
required wires for org.openhab.core.binding.xml_2.5.0 [29] []
required wires for org.openhab.core.config.xml_2.5.0 [30] []
required wires for org.openhab.core.thing.xml_2.5.0 [31] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [32] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [33] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [34] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [35] []
required wires for tec.uom.se_1.0.10 [36] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [37] []
required wires for net.bytebuddy.byte-buddy_1.9.10 [38] []
required wires for net.bytebuddy.byte-buddy-agent_1.9.10 [39] []
required wires for org.mockito.mockito-core_3.1.0 [40] []
required wires for org.objectweb.asm_7.1.0 [41] []
required wires for org.objectweb.asm.commons_7.1.0 [42] []
required wires for org.objectweb.asm.tree_7.1.0 [43] []
required wires for org.eclipse.jetty.client_9.4.20.v20190813 [44] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [45] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [46] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [47] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [48] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [49] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [50] []
required wires for org.eclipse.jetty.websocket.api_9.4.20.v20190813 [51] []
required wires for org.eclipse.jetty.websocket.client_9.4.20.v20190813 [52] []
required wires for org.eclipse.jetty.websocket.common_9.4.20.v20190813 [53] []
required wires for org.eclipse.jetty.xml_9.4.20.v20190813 [54] []
required wires for org.ops4j.pax.web.pax-web-api_7.2.11 [55] []
required wires for slf4j.simple_1.7.21 [56] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for org.openhab.binding.wemo_2.5.3.202003071409 [57] []
required wires for org.openhab.binding.wemo.tests_2.5.3.202003071416 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.wemo)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003071409"; osgi.wiring.host="org.openhab.binding.wemo"]
required wires for biz.aQute.tester_4.3.0.201909301554 [59] []
required wires for org.openhab.binding.wemo.tests_2.5.3.202003071416 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.wemo)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003071409"; osgi.wiring.host="org.openhab.binding.wemo"]
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:insight:Test-1_0-22124' to inbox.
[OH-thingHandler-1] INFO org.eclipse.jetty.util.log - Logging initialized @3980ms to org.eclipse.jetty.util.log.Slf4jLog
[OH-thingHandler-1] ERROR org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl - Could not start Jetty http client
java.lang.InterruptedException
	at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1343)
	at java.base/java.util.concurrent.CountDownLatch.await(CountDownLatch.java:232)
	at org.eclipse.jetty.io.ManagedSelector.doStart(ManagedSelector.java:122)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.io.SelectorManager.doStart(SelectorManager.java:262)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.client.AbstractConnectorHttpClientTransport.doStart(AbstractConnectorHttpClientTransport.java:64)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.client.HttpClient.doStart(HttpClient.java:244)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$2.run(WebClientFactoryImpl.java:280)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$2.run(WebClientFactoryImpl.java:1)
	at java.base/java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.createHttpClientInternal(WebClientFactoryImpl.java:256)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.access$7(WebClientFactoryImpl.java:253)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$1.run(WebClientFactoryImpl.java:224)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$1.run(WebClientFactoryImpl.java:1)
	at java.base/java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.initialize(WebClientFactoryImpl.java:215)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.getCommonHttpClient(WebClientFactoryImpl.java:166)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrlAndGetReponse(HttpUtil.java:194)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrl(HttpUtil.java:156)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrl(HttpUtil.java:131)
	at org.openhab.binding.wemo.internal.http.WemoHttpCall.executeCall(WemoHttpCall.java:44)
	at org.openhab.binding.wemo.internal.handler.WemoHandler.updateWemoState(WemoHandler.java:443)
	at org.openhab.binding.wemo.internal.handler.WemoHandler$1.run(WemoHandler.java:101)
	at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
	at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305)
	at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:834)
[OH-thingHandler-1] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to get actual state for device 'wemo:insight:Test-1_0-22124': Could not start Jetty http client
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:socket:Test-1_0-22124' to inbox.
[main] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to send command 'OFF' for device 'wemo:socket:TestThing': Invalid URI host: null (authority: 127.0.0.1:null)
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:socket:Test-1_0-22124' to inbox.
[main] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to get actual state for device 'wemo:socket:TestThing': Invalid URI host: null (authority: 127.0.0.1:null)
[forceRemove-1] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@7a65a360' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.base/java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
	at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
	at java.base/java.lang.Thread.run(Thread.java:834)
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:Maker:Test-1_0-22124' to inbox.
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:Maker:Test-1_0-22124' to inbox.
Tests run  : 24
Passed     : 24
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.wemo.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.wemo.tests/2.5.3-SNAPSHOT/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.wemo.tests/2.5.3-SNAPSHOT/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ----< org.openhab.addons.itests:org.openhab.io.hueemulation.tests >-----
[INFO] Building openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests 2.5.3-SNAPSHOT [245/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.io.hueemulation.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.io.hueemulation.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.io.hueemulation.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/main/resources
[INFO] 
[INFO] --- build-helper-maven-plugin:3.0.0:reserve-network-port (reserve-network-port) @ org.openhab.io.hueemulation.tests ---
[INFO] Reserved port 46481 for org.osgi.service.http.port
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.io.hueemulation.tests ---
[INFO] Changes detected - recompiling the module!
[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
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.io.hueemulation.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.io.hueemulation.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.io.hueemulation.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.io.hueemulation.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/org.openhab.io.hueemulation.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.io.hueemulation.tests ---
[INFO] Matching glob *
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index/org.apache.servicemix.bundles.xstream-1.4.7.1.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
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
[main] INFO org.eclipse.jetty.util.log - Logging initialized @3269ms to org.eclipse.jetty.util.log.Slf4jLog
[main] INFO org.ops4j.pax.web.service.internal.Activator - EventAdmin support enabled, servlet events will be postet to topics.
[main] INFO org.ops4j.pax.web.service.internal.Activator - LogService support enabled, log events will be created.
[main] INFO org.ops4j.pax.web.service.internal.Activator - Pax Web started
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for ch.qos.logback.core_1.2.3 [1] []
required wires for com.google.gson_2.8.2.v20180104-1110 [2] []
required wires for javax.measure.unit-api_1.0.0 [3] []
required wires for org.apache.commons.io_2.2.0 [4] []
required wires for org.apache.commons.lang_2.6.0 [5] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [6] []
required wires for org.apache.felix.scr_2.1.10 [7] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [8] []
required wires for org.openhab.core_2.5.0 [9] []
required wires for org.openhab.core.config.core_2.5.0 [10] []
required wires for org.openhab.core.test_2.5.0 [11] []
required wires for org.osgi.service.event_1.4.0.201802012106 [12] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [13] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [14] []
required wires for slf4j.api_1.7.25 [15] []
required wires for org.apache.commons.exec_1.1.0 [16] []
required wires for org.apache.felix.configadmin_1.9.8 [17] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [18] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [19] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [20] []
required wires for org.apache.xbean.bundleutils_4.12.0 [21] []
required wires for org.apache.xbean.finder_4.12.0 [22] []
required wires for org.jupnp_2.5.2 [23] []
required wires for org.openhab.core.automation_2.5.0 [24] []
required wires for org.openhab.core.io.console_2.5.0 [25] []
required wires for org.openhab.core.io.net_2.5.0 [26] []
required wires for org.openhab.core.thing_2.5.0 [27] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [28] []
required wires for org.openhab.core.binding.xml_2.5.0 [29] []
required wires for org.openhab.core.config.xml_2.5.0 [30] []
required wires for org.openhab.core.thing.xml_2.5.0 [31] []
required wires for com.eclipsesource.jaxrs.jersey-all_2.22.2 [32] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [33] []
required wires for tec.uom.se_1.0.10 [34] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [35] []
required wires for org.openhab.core.ephemeris_2.5.0 [36] []
required wires for org.objectweb.asm_7.1.0 [37] []
required wires for org.objectweb.asm.commons_7.1.0 [38] []
required wires for org.objectweb.asm.tree_7.1.0 [39] []
required wires for jollyday_0.5.8 [40] []
required wires for org.threeten.extra_1.4.0 [41] []
required wires for org.eclipse.jetty.client_9.4.20.v20190813 [42] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [43] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [44] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [45] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [46] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [47] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [48] []
required wires for org.eclipse.jetty.websocket.api_9.4.20.v20190813 [49] []
required wires for org.eclipse.jetty.websocket.client_9.4.20.v20190813 [50] []
required wires for org.eclipse.jetty.websocket.common_9.4.20.v20190813 [51] []
required wires for org.eclipse.jetty.xml_9.4.20.v20190813 [52] []
required wires for org.ops4j.pax.swissbox.optional.jcl_1.8.3 [53] []
required wires for org.ops4j.pax.web.pax-web-api_7.2.11 [54] []
required wires for org.ops4j.pax.web.pax-web-jetty_7.2.11 [55] []
required wires for org.ops4j.pax.web.pax-web-runtime_7.2.11 [56] []
required wires for org.ops4j.pax.web.pax-web-spi_7.2.11 [57] []
required wires for slf4j.simple_1.7.21 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for org.openhab.io.hueemulation_2.5.3.202003071409 [59] []
required wires for org.openhab.io.hueemulation.tests_2.5.3.202003071416 [60] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.io.hueemulation)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003071409"; osgi.wiring.host="org.openhab.io.hueemulation"]
required wires for biz.aQute.tester_4.3.0.201909301554 [61] []
required wires for org.openhab.io.hueemulation.tests_2.5.3.202003071416 [60] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.io.hueemulation)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003071409"; osgi.wiring.host="org.openhab.io.hueemulation"]
[OH-common-1] INFO org.openhab.io.hueemulation.internal.ConfigStore - No unique ID assigned yet. Assigning d7b5a05d-c619-4247-b1a7-45ec243cfc6b and restarting...
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyFactoryImpl - No ALPN class available
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyFactoryImpl - HTTP/2 not available, creating standard ServerConnector for Http
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.openhab.hueemulation)] INFO org.openhab.io.hueemulation.internal.ConfigStore - Using discovery ip fe80:0:0:0:4001:aff:fe14:88%ens4
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.openhab.hueemulation)] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyServerImpl - Pax Web available at [0.0.0.0]:[46481]
Components implementing org.openhab.io.hueemulation.internal.HueEmulationService:
110 [SATISFIED] org.openhab.io.hueemulation.internal.HueEmulationService in org.openhab.io.hueemulation
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.internal.HttpServiceFactoryImpl - Binding bundle: [org.openhab.io.hueemulation_2.5.3.202003071409 [59]] to http service
Components implementing org.openhab.io.hueemulation.internal.HueEmulationService:
110 [SATISFIED] org.openhab.io.hueemulation.internal.HueEmulationService in org.openhab.io.hueemulation
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - will add org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer to ServletContainerInitializers
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - added ServletContainerInitializer: org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.jetty.internal.HttpServiceContext - registering context DefaultHttpContext [bundle=org.openhab.io.hueemulation_2.5.3.202003071409 [59], contextID=default], with context-name: 
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.session - DefaultSessionIdManager workerName=node0
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.session - No SessionScavenger set, using defaults
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.session - node0 Scavenging every 600000ms
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.handler.ContextHandler - Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.openhab.io.hueemulation_2.5.3.202003071409 [59], contextID=default]}
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.Server - jetty-9.4.20.v20190813; built: 2019-08-13T21:28:18.144Z; git: 84700530e645e812b336747464d6fbbf370c9a20; jvm 11.0.2+9
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.AbstractConnector - Started default@2dfb516e{HTTP/1.1,[http/1.1]}{0.0.0.0:46481}
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.Server - Started @4034ms
[main] INFO org.ops4j.pax.web.service.internal.HttpServiceFactoryImpl - Binding bundle: [org.jupnp_2.5.2 [23]] to http service
[main] INFO org.jupnp.UpnpServiceImpl - Starting UPnP service...
[main] INFO org.jupnp.transport.impl.osgi.HttpServiceServletContainerAdapter - Registering UPnP callback servlet as /upnpcallback
[main] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - will add org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer to ServletContainerInitializers
[main] WARN org.ops4j.pax.web.utils.ServletContainerInitializerScanner - failed to parse and instantiate of javax.servlet.ServletContainerInitializer in classpath
[main] INFO org.ops4j.pax.web.service.jetty.internal.HttpServiceContext - registering context DefaultHttpContext [bundle=org.jupnp_2.5.2 [23], contextID=custom], with context-name: 
[main] INFO org.eclipse.jetty.server.handler.ContextHandler - Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.jupnp_2.5.2 [23], contextID=custom]}
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.openhab.io.hueemulation.internal.HueEmulationService - Hue Emulation service available under /api
TEST UpnpServiceTest(org.openhab.io.hueemulation.internal.HueEmulationServiceOSGiTest) <<< ERROR: test timed out after 10000 milliseconds
org.junit.runners.model.TestTimedOutException: test timed out after 10000 milliseconds
	at java.base@11.0.2/java.lang.Thread.sleep(Native Method)
	at org.eclipse.smarthome.test.java.JavaTest.internalSleep(JavaTest.java:202)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:144)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:120)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:73)
	at org.openhab.io.hueemulation.internal.HueEmulationServiceOSGiTest.UpnpServiceTest(HueEmulationServiceOSGiTest.java:93)
	at java.base@11.0.2/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base@11.0.2/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base@11.0.2/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base@11.0.2/java.lang.reflect.Method.invoke(Method.java:566)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
	at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
	at java.base@11.0.2/java.util.concurrent.FutureTask.run(FutureTask.java:264)
	at java.base@11.0.2/java.lang.Thread.run(Thread.java:834)
Tests run  : 1
Passed     : 0
Errors     : 1
Failures   : 0
[INFO] 1 Error(s)
[ERROR] Error   : Exit code remote process 1: /usr/local/lib/jvm/openjdk11/bin/java -cp /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache/biz.aQute.launcher/biz.aQute.launcher.pre.jar -Dlauncher.properties="/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/generated/launch9900544697529950868.properties" -Dorg.osgi.service.http.port=46481 -ea -Dlauncher.runpath="/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index/org.eclipse.osgi-3.13.100.v20180827-1536.jar,/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache/biz.aQute.launcher/biz.aQute.launcher-4.3.0.jar" aQute.launcher.pre.EmbeddedLauncher
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for openHAB Add-ons 2.5.3-SNAPSHOT:
[INFO] 
[INFO] openHAB Add-ons .................................... SUCCESS [  2.898 s]
[INFO] openHAB Add-ons :: BOM ............................. SUCCESS [  0.475 s]
[INFO] openHAB Add-ons :: BOM :: Runtime Index ............ SUCCESS [  8.580 s]
[INFO] openHAB Add-ons :: BOM :: Test Index ............... SUCCESS [  1.368 s]
[INFO] openHAB Add-ons :: BOM :: openHAB Core Index ....... SUCCESS [  1.221 s]
[INFO] openHAB Add-ons :: Bundles ......................... SUCCESS [  2.522 s]
[INFO] openHAB Add-ons :: Bundles :: Airquality Binding ... SUCCESS [  9.700 s]
[INFO] openHAB Add-ons :: Bundles :: AirVisual Node Air Quality Monitor Binding SUCCESS [  7.334 s]
[INFO] openHAB Add-ons :: Bundles :: AllPlay Binding ...... SUCCESS [  7.561 s]
[INFO] openHAB Add-ons :: Bundles :: Amazon Dash Button Binding SUCCESS [  4.484 s]
[INFO] openHAB Add-ons :: Bundles :: Amazon Echo Control Binding SUCCESS [  4.176 s]
[INFO] openHAB Add-ons :: Bundles :: Ambient Weather Binding SUCCESS [  3.335 s]
[INFO] openHAB Add-ons :: Bundles :: Astro Binding ........ SUCCESS [  5.550 s]
[INFO] openHAB Add-ons :: Bundles :: Atlona Binding ....... SUCCESS [  3.005 s]
[INFO] openHAB Add-ons :: Bundles :: Autelis Binding ...... SUCCESS [  2.804 s]
[INFO] openHAB Add-ons :: Bundles :: AVM FRITZ! Binding ... SUCCESS [  5.788 s]
[INFO] openHAB Add-ons :: Bundles :: BigAssFan Binding .... SUCCESS [  2.762 s]
[INFO] openHAB Add-ons :: Bundles :: Bluetooth Binding .... SUCCESS [  5.869 s]
[INFO] openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter SUCCESS [  4.269 s]
[INFO] openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter SUCCESS [  4.564 s]
[INFO] openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter SUCCESS [  2.843 s]
[INFO] openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter SUCCESS [  2.540 s]
[INFO] openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter SUCCESS [  2.956 s]
[INFO] openHAB Add-ons :: Bundles :: Bosch Indego Binding . SUCCESS [  2.963 s]
[INFO] openHAB Add-ons :: Bundles :: BoseSoundTouch Binding SUCCESS [  3.161 s]
[INFO] openHAB Add-ons :: Bundles :: Buienradar Binding ... SUCCESS [  4.233 s]
[INFO] openHAB Add-ons :: Bundles :: Chromecast Binding ... SUCCESS [ 10.415 s]
[INFO] openHAB Add-ons :: Bundles :: CM11A Binding ........ SUCCESS [  2.754 s]
[INFO] openHAB Add-ons :: Bundles :: CoolMasterNet Binding  SUCCESS [  3.000 s]
[INFO] openHAB Add-ons :: Bundles :: Daikin Binding ....... SUCCESS [  2.753 s]
[INFO] openHAB Add-ons :: Bundles :: Dark Sky Binding ..... SUCCESS [  4.011 s]
[INFO] openHAB Add-ons :: Bundles :: Dresden Elektronik deCONZ Binding SUCCESS [  2.652 s]
[INFO] openHAB Add-ons :: Bundles :: Denon / Marantz Binding SUCCESS [  3.003 s]
[INFO] openHAB Add-ons :: Bundles :: Digiplex/EVO Binding . SUCCESS [  2.431 s]
[INFO] openHAB Add-ons :: Bundles :: DigitalSTROM Binding . SUCCESS [  3.694 s]
[INFO] openHAB Add-ons :: Bundles :: D-Link Smart Home Binding SUCCESS [  2.709 s]
[INFO] openHAB Add-ons :: Bundles :: DMX Binding .......... SUCCESS [  6.845 s]
[INFO] openHAB Add-ons :: Bundles :: Doorbird Binding ..... SUCCESS [  2.998 s]
[INFO] openHAB Add-ons :: Bundles :: DSCAlarm Binding ..... SUCCESS [  2.820 s]
[INFO] openHAB Add-ons :: Bundles :: DSMR Binding ......... SUCCESS [  6.308 s]
[INFO] openHAB Add-ons :: Bundles :: DwdUnwetter Binding .. SUCCESS [  5.489 s]
[INFO] openHAB Add-ons :: Bundles :: EleroTransmitterStick Binding SUCCESS [  2.385 s]
[INFO] openHAB Add-ons :: Bundles :: EnOcean Binding ...... SUCCESS [  3.130 s]
[INFO] openHAB Add-ons :: Bundles :: EnturNo Binding ...... SUCCESS [  2.595 s]
[INFO] openHAB Add-ons :: Bundles :: evohome Binding ...... SUCCESS [  2.700 s]
[INFO] openHAB Add-ons :: Bundles :: Exec Binding ......... SUCCESS [  2.108 s]
[INFO] openHAB Add-ons :: Bundles :: Feed Binding ......... SUCCESS [  2.705 s]
[INFO] openHAB Add-ons :: Bundles :: Feican Binding ....... SUCCESS [  2.276 s]
[INFO] openHAB Add-ons :: Bundles :: Folding Binding ...... SUCCESS [  2.257 s]
[INFO] openHAB Add-ons :: Bundles :: Foobot Binding ....... SUCCESS [  4.189 s]
[INFO] openHAB Add-ons :: Bundles :: Freebox Binding ...... SUCCESS [  2.618 s]
[INFO] openHAB Add-ons :: Bundles :: Fronius Binding ...... SUCCESS [  2.312 s]
[INFO] openHAB Add-ons :: Bundles :: FSInternetRadio Binding SUCCESS [  5.987 s]
[INFO] openHAB Add-ons :: Bundles :: FTP Upload Binding ... SUCCESS [  2.825 s]
[INFO] openHAB Add-ons :: Bundles :: Gardena Binding ...... SUCCESS [  2.421 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Map SUCCESS [  4.894 s]
[INFO] openHAB Add-ons :: Bundles :: GlobalCache Binding .. SUCCESS [  2.292 s]
[INFO] openHAB Add-ons :: Bundles :: GPSTracker Binding ... SUCCESS [  2.363 s]
[INFO] openHAB Add-ons :: Bundles :: GROHE ONDUS Binding .. SUCCESS [  2.427 s]
[INFO] openHAB Add-ons :: Bundles :: HarmonyHub Binding ... SUCCESS [  2.407 s]
[INFO] openHAB Add-ons :: Bundles :: HDanywhere Binding ... SUCCESS [  2.142 s]
[INFO] openHAB Add-ons :: Bundles :: Hunter Douglas PowerView Binding SUCCESS [  2.175 s]
[INFO] openHAB Add-ons :: Bundles :: Helios Binding ....... SUCCESS [  2.541 s]
[INFO] openHAB Add-ons :: Bundles :: Heos Binding ......... SUCCESS [  2.526 s]
[INFO] openHAB Add-ons :: Bundles :: Homematic Binding .... SUCCESS [  5.901 s]
[INFO] openHAB Add-ons :: Bundles :: HP Printer Binding ... SUCCESS [  2.131 s]
[INFO] openHAB Add-ons :: Bundles :: hue Binding .......... SUCCESS [  5.606 s]
[INFO] openHAB Add-ons :: Bundles :: Hydrawise Binding .... SUCCESS [  2.320 s]
[INFO] openHAB Add-ons :: Bundles :: Hyperion Binding ..... SUCCESS [  2.235 s]
[INFO] openHAB Add-ons :: Bundles :: iAquaLink Binding .... SUCCESS [  2.318 s]
[INFO] openHAB Add-ons :: Bundles :: iCloud Binding ....... SUCCESS [  2.042 s]
[INFO] openHAB Add-ons :: Bundles :: IHC Binding .......... SUCCESS [  7.236 s]
[INFO] openHAB Add-ons :: Bundles :: innogy Smarthome Binding SUCCESS [  2.572 s]
[INFO] openHAB Add-ons :: Bundles :: IPP Binding .......... SUCCESS [  4.123 s]
[INFO] openHAB Add-ons :: Bundles :: IRtrans Binding ...... SUCCESS [  2.194 s]
[INFO] openHAB Add-ons :: Bundles :: JeeLink Binding ...... SUCCESS [  2.596 s]
[INFO] openHAB Add-ons :: Bundles :: Keba Binding ......... SUCCESS [  2.227 s]
[INFO] openHAB Add-ons :: Bundles :: KM200 Binding ........ SUCCESS [  2.322 s]
[INFO] openHAB Add-ons :: Bundles :: KNX Binding .......... SUCCESS [  4.454 s]
[INFO] openHAB Add-ons :: Bundles :: Kodi Binding ......... SUCCESS [  3.661 s]
[INFO] openHAB Add-ons :: Bundles :: Konnected Binding .... SUCCESS [  2.429 s]
[INFO] openHAB Add-ons :: Bundles :: Kostal Binding ....... SUCCESS [  2.439 s]
[INFO] openHAB Add-ons :: Bundles :: LaMetric Time Binding  SUCCESS [  2.402 s]
[INFO] openHAB Add-ons :: Bundles :: Leap Motion Binding .. SUCCESS [  2.278 s]
[INFO] openHAB Add-ons :: Bundles :: LG HomBot Binding .... SUCCESS [  2.109 s]
[INFO] openHAB Add-ons :: Bundles :: LG TV Serial Binding . SUCCESS [  2.163 s]
[INFO] openHAB Add-ons :: Bundles :: LG webOS Binding ..... SUCCESS [  2.581 s]
[INFO] openHAB Add-ons :: Bundles :: LIFX Binding ......... SUCCESS [  2.552 s]
[INFO] openHAB Add-ons :: Bundles :: LIRC Binding ......... SUCCESS [  2.069 s]
[INFO] openHAB Add-ons :: Bundles :: LinuxInput Binding ... SUCCESS [  2.828 s]
[INFO] openHAB Add-ons :: Bundles :: Log Reader Binding ... SUCCESS [  2.268 s]
[INFO] openHAB Add-ons :: Bundles :: Loxone Binding ....... SUCCESS [  6.744 s]
[INFO] openHAB Add-ons :: Bundles :: Lutron Binding ....... SUCCESS [  2.942 s]
[INFO] openHAB Add-ons :: Bundles :: Mail Binding ......... SUCCESS [  3.581 s]
[INFO] openHAB Add-ons :: Bundles :: MaxCube Binding ...... SUCCESS [  2.364 s]
[INFO] openHAB Add-ons :: Bundles :: mcp23017 Binding ..... SUCCESS [  2.433 s]
[INFO] openHAB Add-ons :: Bundles :: MELCloud Binding ..... SUCCESS [  2.216 s]
[INFO] openHAB Add-ons :: Bundles :: meteoblue Binding .... SUCCESS [  2.087 s]
[INFO] openHAB Add-ons :: Bundles :: meteostick Binding ... SUCCESS [  2.084 s]
[INFO] openHAB Add-ons :: Bundles :: Miele Binding ........ SUCCESS [  2.402 s]
[INFO] openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Home Binding SUCCESS [  2.341 s]
[INFO] openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding . SUCCESS [  2.924 s]
[INFO] openHAB Add-ons :: Bundles :: Millheat Binding ..... SUCCESS [  6.517 s]
[INFO] openHAB Add-ons :: Bundles :: Milight Binding ...... SUCCESS [  2.202 s]
[INFO] openHAB Add-ons :: Bundles :: Minecraft Binding .... SUCCESS [  3.138 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Modbus Transport SUCCESS [ 12.014 s]
[INFO] openHAB Add-ons :: Bundles :: Modbus Binding ....... SUCCESS [  5.104 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Broker Binding .. SUCCESS [  5.708 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Things and Channels SUCCESS [  6.929 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention SUCCESS [  4.095 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Homie Convention  SUCCESS [  5.984 s]
[INFO] openHAB Add-ons :: Bundles :: Nanoleaf Binding ..... SUCCESS [  3.789 s]
[INFO] openHAB Add-ons :: Bundles :: Neato Binding ........ SUCCESS [  2.249 s]
[INFO] openHAB Add-ons :: Bundles :: Neeo Binding ......... SUCCESS [  2.304 s]
[INFO] openHAB Add-ons :: Bundles :: NeoHub Binding ....... SUCCESS [  2.388 s]
[INFO] openHAB Add-ons :: Bundles :: Nest Binding ......... SUCCESS [  2.319 s]
[INFO] openHAB Add-ons :: Bundles :: Netatmo Binding ...... SUCCESS [  2.867 s]
[INFO] openHAB Add-ons :: Bundles :: Network Binding ...... SUCCESS [  6.091 s]
[INFO] openHAB Add-ons :: Bundles :: Network UPS Tools Binding SUCCESS [  4.507 s]
[INFO] openHAB Add-ons :: Bundles :: Nibe Heatpump Binding  SUCCESS [  4.324 s]
[INFO] openHAB Add-ons :: Bundles :: NibeUplink Binding ... SUCCESS [  2.378 s]
[INFO] openHAB Add-ons :: Bundles :: Nikobus Binding ...... SUCCESS [  2.326 s]
[INFO] openHAB Add-ons :: Bundles :: Niko Home Control Binding SUCCESS [  2.545 s]
[INFO] openHAB Add-ons :: Bundles :: NTP Binding .......... SUCCESS [  2.029 s]
[INFO] openHAB Add-ons :: Bundles :: Nuki Binding ......... SUCCESS [  2.410 s]
[INFO] openHAB Add-ons :: Bundles :: Oceanic Binding ...... SUCCESS [  2.137 s]
[INFO] openHAB Add-ons :: Bundles :: OmnikInverter Binding  SUCCESS [  3.149 s]
[INFO] openHAB Add-ons :: Bundles :: OneBusAway Binding ... SUCCESS [  2.114 s]
[INFO] openHAB Add-ons :: Bundles :: OneWireGPIO Binding .. SUCCESS [  1.877 s]
[INFO] openHAB Add-ons :: Bundles :: OneWire Binding ...... SUCCESS [  6.876 s]
[INFO] openHAB Add-ons :: Bundles :: Onkyo Binding ........ SUCCESS [  2.252 s]
[INFO] openHAB Add-ons :: Bundles :: OpenGarage Binding ... SUCCESS [  2.186 s]
[INFO] openHAB Add-ons :: Bundles :: OpenSprinkler Binding  SUCCESS [  2.181 s]
[INFO] openHAB Add-ons :: Bundles :: OpenUV Binding ....... SUCCESS [  2.041 s]
[INFO] openHAB Add-ons :: Bundles :: OpenWeatherMap Binding SUCCESS [  2.214 s]
[INFO] openHAB Add-ons :: Bundles :: Orvibo Binding ....... SUCCESS [  2.771 s]
[INFO] openHAB Add-ons :: Bundles :: ParadoxAlarm Binding . SUCCESS [  2.459 s]
[INFO] openHAB Add-ons :: Bundles :: Pentair Binding ...... SUCCESS [  2.168 s]
[INFO] openHAB Add-ons :: Bundles :: PHC Binding .......... SUCCESS [  2.180 s]
[INFO] openHAB Add-ons :: Bundles :: PioneerAvr Binding ... SUCCESS [  2.177 s]
[INFO] openHAB Add-ons :: Bundles :: pixometer Binding .... SUCCESS [  2.145 s]
[INFO] openHAB Add-ons :: Bundles :: PJLink Binding ....... SUCCESS [  2.367 s]
[INFO] openHAB Add-ons :: Bundles :: PLCLogo Binding ...... SUCCESS [  2.510 s]
[INFO] openHAB Add-ons :: Bundles :: Plugwise Binding ..... SUCCESS [  2.373 s]
[INFO] openHAB Add-ons :: Bundles :: Powermax Binding ..... SUCCESS [  2.247 s]
[INFO] openHAB Add-ons :: Bundles :: Pulseaudio Binding ... SUCCESS [  2.139 s]
[INFO] openHAB Add-ons :: Bundles :: Pushbullet Binding ... SUCCESS [  2.247 s]
[INFO] openHAB Add-ons :: Bundles :: RegoHeatPump Binding . SUCCESS [  2.195 s]
[INFO] openHAB Add-ons :: Bundles :: Rfxcom Binding ....... SUCCESS [  4.545 s]
[INFO] openHAB Add-ons :: Bundles :: RME Binding .......... SUCCESS [  2.061 s]
[INFO] openHAB Add-ons :: Bundles :: Robonect Binding ..... SUCCESS [  5.725 s]
[INFO] openHAB Add-ons :: Bundles :: Rotel Binding ........ SUCCESS [  2.332 s]
[INFO] openHAB Add-ons :: Bundles :: RotelRa1x Binding .... SUCCESS [  2.416 s]
[INFO] openHAB Add-ons :: Bundles :: Russound Binding ..... SUCCESS [  2.175 s]
[INFO] openHAB Add-ons :: Bundles :: SamsungTV Binding .... SUCCESS [  2.344 s]
[INFO] openHAB Add-ons :: Bundles :: Satel Binding ........ SUCCESS [  2.340 s]
[INFO] openHAB Add-ons :: Bundles :: Seneye Binding ....... SUCCESS [  1.947 s]
[INFO] openHAB Add-ons :: Bundles :: senseBox Binding ..... SUCCESS [  1.978 s]
[INFO] openHAB Add-ons :: Bundles :: SerialButton Binding . SUCCESS [  1.909 s]
[INFO] openHAB Add-ons :: Bundles :: Shelly Binding ....... SUCCESS [  2.366 s]
[INFO] openHAB Add-ons :: Bundles :: Siemens RDS Binding .. SUCCESS [  2.073 s]
[INFO] openHAB Add-ons :: Bundles :: Sinope Binding ....... SUCCESS [  2.223 s]
[INFO] openHAB Add-ons :: Bundles :: Silvercrest Wifi Socket Binding SUCCESS [  2.107 s]
[INFO] openHAB Add-ons :: Bundles :: SleepIQ Binding ...... SUCCESS [  2.033 s]
[INFO] openHAB Add-ons :: Bundles :: SMA EnergyMeter Binding SUCCESS [  2.214 s]
[INFO] openHAB Add-ons :: Bundles :: Smartmeter Binding ... SUCCESS [ 35.400 s]
[INFO] openHAB Add-ons :: Bundles :: SNMP Binding ......... SUCCESS [  5.832 s]
[INFO] openHAB Add-ons :: Bundles :: SolarEdge Binding .... SUCCESS [  2.182 s]
[INFO] openHAB Add-ons :: Bundles :: Solar-Log Binding .... SUCCESS [  1.952 s]
[INFO] openHAB Add-ons :: Bundles :: SomfyTahoma Binding .. SUCCESS [  2.316 s]
[INFO] openHAB Add-ons :: Bundles :: Sonos Binding ........ SUCCESS [  2.273 s]
[INFO] openHAB Add-ons :: Bundles :: SonyAudio Binding .... SUCCESS [  1.754 s]
[INFO] openHAB Add-ons :: Bundles :: Sony Projector Binding SUCCESS [  2.150 s]
[INFO] openHAB Add-ons :: Bundles :: Spotify Binding ...... SUCCESS [  2.138 s]
[INFO] openHAB Add-ons :: Bundles :: SqueezeBox Binding ... SUCCESS [  2.421 s]
[INFO] openHAB Add-ons :: Bundles :: Synop Analyzer Binding SUCCESS [  2.092 s]
[INFO] openHAB Add-ons :: Bundles :: Systeminfo Binding ... SUCCESS [  2.528 s]
[INFO] openHAB Add-ons :: Bundles :: Tado Binding ......... SUCCESS [  2.377 s]
[INFO] openHAB Add-ons :: Bundles :: Tankerkoenig Binding . SUCCESS [  2.090 s]
[INFO] openHAB Add-ons :: Bundles :: Telegram Binding ..... SUCCESS [  2.986 s]
[INFO] openHAB Add-ons :: Bundles :: Tellstick Binding .... SUCCESS [  3.166 s]
[INFO] openHAB Add-ons :: Bundles :: Tesla Binding ........ SUCCESS [  2.291 s]
[INFO] openHAB Add-ons :: Bundles :: TP-Link Smart Home Binding SUCCESS [  6.121 s]
[INFO] openHAB Add-ons :: Bundles :: TRÅDFRI Binding ...... SUCCESS [  5.207 s]
[INFO] openHAB Add-ons :: Bundles :: UniFi Binding ........ SUCCESS [  2.124 s]
[INFO] openHAB Add-ons :: Bundles :: Somfy URTSI II binding SUCCESS [  2.052 s]
[INFO] openHAB Add-ons :: Bundles :: ValloxMV Binding ..... SUCCESS [  2.105 s]
[INFO] openHAB Add-ons :: Bundles :: Vektiva Binding ...... SUCCESS [  2.268 s]
[INFO] openHAB Add-ons :: Bundles :: Volvo On Call Binding  SUCCESS [  1.996 s]
[INFO] openHAB Add-ons :: Bundles :: Velbus Binding ....... SUCCESS [  2.216 s]
[INFO] openHAB Add-ons :: Bundles :: Velux Binding ........ SUCCESS [  2.684 s]
[INFO] openHAB Add-ons :: Bundles :: Vitotronic Binding ... SUCCESS [  2.088 s]
[INFO] openHAB Add-ons :: Bundles :: WeatherCompany Binding SUCCESS [  2.129 s]
[INFO] openHAB Add-ons :: Bundles :: WeatherUnderground Binding SUCCESS [  2.174 s]
[INFO] openHAB Add-ons :: Bundles :: Wemo Binding ......... SUCCESS [  2.274 s]
[INFO] openHAB Add-ons :: Bundles :: WiFiLED Binding ...... SUCCESS [  5.822 s]
[INFO] openHAB Add-ons :: Bundles :: Windcentrale Binding . SUCCESS [  1.951 s]
[INFO] openHAB Add-ons :: Bundles :: XMLTV Binding ........ SUCCESS [  2.241 s]
[INFO] openHAB Add-ons :: Bundles :: XMPPClient Binding ... SUCCESS [  2.697 s]
[INFO] openHAB Add-ons :: Bundles :: Yamaha Receiver Binding SUCCESS [  6.680 s]
[INFO] openHAB Add-ons :: Bundles :: Yeelight Binding ..... SUCCESS [  4.676 s]
[INFO] openHAB Add-ons :: Bundles :: Zoneminder Binding ... SUCCESS [  2.595 s]
[INFO] openHAB Add-ons :: Bundles :: ZWay Binding ......... SUCCESS [  2.323 s]
[INFO] openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace SUCCESS [  4.012 s]
[INFO] openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace (Automation) SUCCESS [  0.481 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Homekit ........ SUCCESS [  4.199 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Hue Emulation Service SUCCESS [ 12.865 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: ImperiHome Integration Service SUCCESS [  2.338 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Java Sound Support SUCCESS [  2.510 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: NEEO Integration SUCCESS [  2.816 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector SUCCESS [  2.189 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: MQTT Broker Moquette SUCCESS [ 19.515 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Web Audio Support SUCCESS [  1.917 s]
[INFO] openHAB Add-ons :: Bundles :: Persistence Service :: MapDB SUCCESS [  2.033 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Binary To JSON SUCCESS [  1.955 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Exec SUCCESS [  1.954 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: JavaScript SUCCESS [  2.141 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Jinja SUCCESS [  3.607 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath SUCCESS [  3.379 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: RegEx SUCCESS [  3.090 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Scale SUCCESS [  3.398 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: XPath SUCCESS [  3.282 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Xslt SUCCESS [  3.600 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Google Cloud Text-to-Speech SUCCESS [  2.137 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: macOS Text-to-Speech SUCCESS [  3.281 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Mary Text-to-Speech SUCCESS [  7.776 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Pico Text-to-Speech SUCCESS [  1.907 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Polly Text-to-Speech SUCCESS [  2.173 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech SUCCESS [  1.953 s]
[INFO] openHAB Add-ons :: BOM :: openHAB Add-ons .......... SUCCESS [  0.126 s]
[INFO] openHAB Add-ons :: Features :: Karaf ............... SUCCESS [  0.131 s]
[INFO] openHAB Add-ons :: Features :: Karaf :: Add-ons External SUCCESS [  0.168 s]
[INFO] openHAB Add-ons :: Features :: Karaf :: Add-ons .... SUCCESS [  5.959 s]
[INFO] openHAB Add-ons :: Integration Tests ............... SUCCESS [  0.064 s]
[INFO] openHAB Add-ons :: Integration Tests :: Astro Binding Tests SUCCESS [  7.394 s]
[INFO] openHAB Add-ons :: Integration Tests :: AVM FRITZ! Binding Tests SUCCESS [  7.092 s]
[INFO] openHAB Add-ons :: Integration Tests :: Feed Binding Tests SUCCESS [02:31 min]
[INFO] openHAB Add-ons :: Integration Tests :: hue Binding Tests SUCCESS [ 11.733 s]
[INFO] openHAB Add-ons :: Integration Tests :: MaxCube Binding Tests SUCCESS [ 10.034 s]
[INFO] openHAB Add-ons :: Integration Tests :: Nest Binding Tests SUCCESS [ 16.717 s]
[INFO] openHAB Add-ons :: Integration Tests :: NTP Binding Tests SUCCESS [  7.508 s]
[INFO] openHAB Add-ons :: Integration Tests :: Systeminfo Binding Tests SUCCESS [ 54.667 s]
[INFO] openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding SUCCESS [  5.312 s]
[INFO] openHAB Add-ons :: Integration Tests :: Wemo Binding Tests SUCCESS [  7.582 s]
[INFO] openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests FAILURE [ 17.071 s]
[INFO] openHAB Add-ons :: Integration Tests :: MapDB Persistence Tests SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  18:09 min
[INFO] Finished at: 2020-03-07T14:16:30Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal biz.aQute.bnd:bnd-testing-maven-plugin:4.3.0:testing (default) on project org.openhab.io.hueemulation.tests: 1 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
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :org.openhab.io.hueemulation.tests

@TravisBuddy
Copy link

Travis tests were successful

Hey @sprehn,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

Copy link
Contributor

@lolodomo lolodomo left a comment

Choose a reason for hiding this comment

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

One last comment + a fundamental remark about updating thing configuration.

@sprehn
Copy link
Contributor Author

sprehn commented Mar 8, 2020

OK, are we good to proceed with this PR?

@TravisBuddy
Copy link

Travis tests have failed

Hey @sprehn,
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.

1st Build

Expand here
Build all
  1/246| openHAB Add-ons 2.5.3-SNAPSHOT
  2/246| openHAB Add-ons :: BOM 2.5.3-SNAPSHOT
  3/246| openHAB Add-ons :: BOM :: Runtime Index 2.5.3-SNAPSHOT
  4/246| openHAB Add-ons :: BOM :: Test Index 2.5.3-SNAPSHOT
  5/246| openHAB Add-ons :: BOM :: openHAB Core Index 2.5.3-SNAPSHOT
  6/246| openHAB Add-ons :: Bundles 2.5.3-SNAPSHOT
  7/246| openHAB Add-ons :: Bundles :: Airquality Binding 2.5.3-SNAPSHOT
  8/246| openHAB Add-ons :: Bundles :: AirVisual Node Air Quality Monitor Binding 2.5.3-SNAPSHOT
  9/246| openHAB Add-ons :: Bundles :: AllPlay Binding 2.5.3-SNAPSHOT
 10/246| openHAB Add-ons :: Bundles :: Amazon Dash Button Binding 2.5.3-SNAPSHOT
 11/246| openHAB Add-ons :: Bundles :: Amazon Echo Control Binding 2.5.3-SNAPSHOT
 12/246| openHAB Add-ons :: Bundles :: Ambient Weather Binding 2.5.3-SNAPSHOT
 13/246| openHAB Add-ons :: Bundles :: Astro Binding 2.5.3-SNAPSHOT
 14/246| openHAB Add-ons :: Bundles :: Atlona Binding 2.5.3-SNAPSHOT
 15/246| openHAB Add-ons :: Bundles :: Autelis Binding 2.5.3-SNAPSHOT
 16/246| openHAB Add-ons :: Bundles :: AVM FRITZ! Binding 2.5.3-SNAPSHOT
 17/246| openHAB Add-ons :: Bundles :: BigAssFan Binding 2.5.3-SNAPSHOT
 18/246| openHAB Add-ons :: Bundles :: Bluetooth Binding 2.5.3-SNAPSHOT
 19/246| openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter 2.5.3-SNAPSHOT
 20/246| openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter 2.5.3-SNAPSHOT
 21/246| openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter 2.5.3-SNAPSHOT
 22/246| openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter 2.5.3-SNAPSHOT
 23/246| openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter 2.5.3-SNAPSHOT
 24/246| openHAB Add-ons :: Bundles :: Bosch Indego Binding 2.5.3-SNAPSHOT
 25/246| openHAB Add-ons :: Bundles :: BoseSoundTouch Binding 2.5.3-SNAPSHOT
 26/246| openHAB Add-ons :: Bundles :: Buienradar Binding 2.5.3-SNAPSHOT
 27/246| openHAB Add-ons :: Bundles :: Chromecast Binding 2.5.3-SNAPSHOT
 28/246| openHAB Add-ons :: Bundles :: CM11A Binding 2.5.3-SNAPSHOT
 29/246| openHAB Add-ons :: Bundles :: CoolMasterNet Binding 2.5.3-SNAPSHOT
 30/246| openHAB Add-ons :: Bundles :: Daikin Binding 2.5.3-SNAPSHOT
 31/246| openHAB Add-ons :: Bundles :: Dark Sky Binding 2.5.3-SNAPSHOT
 32/246| openHAB Add-ons :: Bundles :: Dresden Elektronik deCONZ Binding 2.5.3-SNAPSHOT
 33/246| openHAB Add-ons :: Bundles :: Denon / Marantz Binding 2.5.3-SNAPSHOT
 34/246| openHAB Add-ons :: Bundles :: Digiplex/EVO Binding 2.5.3-SNAPSHOT
 35/246| openHAB Add-ons :: Bundles :: DigitalSTROM Binding 2.5.3-SNAPSHOT
 36/246| openHAB Add-ons :: Bundles :: D-Link Smart Home Binding 2.5.3-SNAPSHOT
 37/246| openHAB Add-ons :: Bundles :: DMX Binding 2.5.3-SNAPSHOT
 38/246| openHAB Add-ons :: Bundles :: Doorbird Binding 2.5.3-SNAPSHOT
 39/246| openHAB Add-ons :: Bundles :: DSCAlarm Binding 2.5.3-SNAPSHOT
 40/246| openHAB Add-ons :: Bundles :: DSMR Binding 2.5.3-SNAPSHOT
​ 41/246| openHAB Add-ons :: Bundles :: DwdUnwetter Binding 2.5.3-SNAPSHOT
 42/246| openHAB Add-ons :: Bundles :: EleroTransmitterStick Binding 2.5.3-SNAPSHOT
 43/246| openHAB Add-ons :: Bundles :: EnOcean Binding 2.5.3-SNAPSHOT
 44/246| openHAB Add-ons :: Bundles :: EnturNo Binding 2.5.3-SNAPSHOT
 45/246| openHAB Add-ons :: Bundles :: evohome Binding 2.5.3-SNAPSHOT
 46/246| openHAB Add-ons :: Bundles :: Exec Binding 2.5.3-SNAPSHOT
 47/246| openHAB Add-ons :: Bundles :: Feed Binding 2.5.3-SNAPSHOT
 48/246| openHAB Add-ons :: Bundles :: Feican Binding 2.5.3-SNAPSHOT
 49/246| openHAB Add-ons :: Bundles :: Folding Binding 2.5.3-SNAPSHOT
 50/246| openHAB Add-ons :: Bundles :: Foobot Binding 2.5.3-SNAPSHOT
 51/246| openHAB Add-ons :: Bundles :: Freebox Binding 2.5.3-SNAPSHOT
 52/246| openHAB Add-ons :: Bundles :: Fronius Binding 2.5.3-SNAPSHOT
 53/246| openHAB Add-ons :: Bundles :: FSInternetRadio Binding 2.5.3-SNAPSHOT
 54/246| openHAB Add-ons :: Bundles :: FTP Upload Binding 2.5.3-SNAPSHOT
 55/246| openHAB Add-ons :: Bundles :: Gardena Binding 2.5.3-SNAPSHOT
 56/246| openHAB Add-ons :: Bundles :: Transformation Service :: Map 2.5.3-SNAPSHOT
 57/246| openHAB Add-ons :: Bundles :: GlobalCache Binding 2.5.3-SNAPSHOT
 58/246| openHAB Add-ons :: Bundles :: GPSTracker Binding 2.5.3-SNAPSHOT
 59/246| openHAB Add-ons :: Bundles :: GROHE ONDUS Binding 2.5.3-SNAPSHOT
 60/246| openHAB Add-ons :: Bundles :: HarmonyHub Binding 2.5.3-SNAPSHOT
 61/246| openHAB Add-ons :: Bundles :: HDanywhere Binding 2.5.3-SNAPSHOT
 62/246| openHAB Add-ons :: Bundles :: Hunter Douglas PowerView Binding 2.5.3-SNAPSHOT
 63/246| openHAB Add-ons :: Bundles :: Helios Binding 2.5.3-SNAPSHOT
 64/246| openHAB Add-ons :: Bundles :: Heos Binding 2.5.3-SNAPSHOT
 65/246| openHAB Add-ons :: Bundles :: Homematic Binding 2.5.3-SNAPSHOT
 66/246| openHAB Add-ons :: Bundles :: HP Printer Binding 2.5.3-SNAPSHOT
 67/246| openHAB Add-ons :: Bundles :: hue Binding 2.5.3-SNAPSHOT
 68/246| openHAB Add-ons :: Bundles :: Hydrawise Binding 2.5.3-SNAPSHOT
 69/246| openHAB Add-ons :: Bundles :: Hyperion Binding 2.5.3-SNAPSHOT
 70/246| openHAB Add-ons :: Bundles :: iAquaLink Binding 2.5.3-SNAPSHOT
 71/246| openHAB Add-ons :: Bundles :: iCloud Binding 2.5.3-SNAPSHOT
 72/246| openHAB Add-ons :: Bundles :: IHC Binding 2.5.3-SNAPSHOT
 73/246| openHAB Add-ons :: Bundles :: innogy Smarthome Binding 2.5.3-SNAPSHOT
 74/246| openHAB Add-ons :: Bundles :: IPP Binding 2.5.3-SNAPSHOT
 75/246| openHAB Add-ons :: Bundles :: IRtrans Binding 2.5.3-SNAPSHOT
 76/246| openHAB Add-ons :: Bundles :: JeeLink Binding 2.5.3-SNAPSHOT
 77/246| openHAB Add-ons :: Bundles :: Keba Binding 2.5.3-SNAPSHOT
 78/246| openHAB Add-ons :: Bundles :: KM200 Binding 2.5.3-SNAPSHOT
 79/246| openHAB Add-ons :: Bundles :: KNX Binding 2.5.3-SNAPSHOT
 80/246| openHAB Add-ons :: Bundles :: Kodi Binding 2.5.3-SNAPSHOT
 81/246| openHAB Add-ons :: Bundles :: Konnected Binding 2.5.3-SNAPSHOT
 82/246| openHAB Add-ons :: Bundles :: Kostal Binding 2.5.3-SNAPSHOT
 83/246| openHAB Add-ons :: Bundles :: LaMetric Time Binding 2.5.3-SNAPSHOT
 84/246| openHAB Add-ons :: Bundles :: Leap Motion Binding 2.5.3-SNAPSHOT
 85/246| openHAB Add-ons :: Bundles :: LG HomBot Binding 2.5.3-SNAPSHOT
 86/246| openHAB Add-ons :: Bundles :: LG TV Serial Binding 2.5.3-SNAPSHOT
 87/246| openHAB Add-ons :: Bundles :: LG webOS Binding 2.5.3-SNAPSHOT
 88/246| openHAB Add-ons :: Bundles :: LIFX Binding 2.5.3-SNAPSHOT
 89/246| openHAB Add-ons :: Bundles :: LIRC Binding 2.5.3-SNAPSHOT
 90/246| openHAB Add-ons :: Bundles :: LinuxInput Binding 2.5.3-SNAPSHOT
 91/246| openHAB Add-ons :: Bundles :: Log Reader Binding 2.5.3-SNAPSHOT
 92/246| openHAB Add-ons :: Bundles :: Loxone Binding 2.5.3-SNAPSHOT
 93/246| openHAB Add-ons :: Bundles :: Lutron Binding 2.5.3-SNAPSHOT
 94/246| openHAB Add-ons :: Bundles :: Mail Binding 2.5.3-SNAPSHOT
 95/246| openHAB Add-ons :: Bundles :: MaxCube Binding 2.5.3-SNAPSHOT
 96/246| openHAB Add-ons :: Bundles :: mcp23017 Binding 2.5.3-SNAPSHOT
 97/246| openHAB Add-ons :: Bundles :: MELCloud Binding 2.5.3-SNAPSHOT
 98/246| openHAB Add-ons :: Bundles :: meteoblue Binding 2.5.3-SNAPSHOT
 99/246| openHAB Add-ons :: Bundles :: meteostick Binding 2.5.3-SNAPSHOT
100/246| openHAB Add-ons :: Bundles :: Miele Binding 2.5.3-SNAPSHOT
101/246| openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Home Binding 2.5.3-SNAPSHOT
102/246| openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding 2.5.3-SNAPSHOT
103/246| openHAB Add-ons :: Bundles :: Millheat Binding 2.5.3-SNAPSHOT
104/246| openHAB Add-ons :: Bundles :: Milight Binding 2.5.3-SNAPSHOT
105/246| openHAB Add-ons :: Bundles :: Minecraft Binding 2.5.3-SNAPSHOT
106/246| openHAB Add-ons :: Bundles :: IO :: Modbus Transport 2.5.3-SNAPSHOT
107/246| openHAB Add-ons :: Bundles :: Modbus Binding 2.5.3-SNAPSHOT
108/246| openHAB Add-ons :: Bundles :: MQTT Broker Binding 2.5.3-SNAPSHOT
109/246| openHAB Add-ons :: Bundles :: MQTT Things and Channels 2.5.3-SNAPSHOT
​110/246| openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention 2.5.3-SNAPSHOT
111/246| openHAB Add-ons :: Bundles :: MQTT Homie Convention 2.5.3-SNAPSHOT
112/246| openHAB Add-ons :: Bundles :: Nanoleaf Binding 2.5.3-SNAPSHOT
113/246| openHAB Add-ons :: Bundles :: Neato Binding 2.5.3-SNAPSHOT
114/246| openHAB Add-ons :: Bundles :: Neeo Binding 2.5.3-SNAPSHOT
115/246| openHAB Add-ons :: Bundles :: NeoHub Binding 2.5.3-SNAPSHOT
116/246| openHAB Add-ons :: Bundles :: Nest Binding 2.5.3-SNAPSHOT
117/246| openHAB Add-ons :: Bundles :: Netatmo Binding 2.5.3-SNAPSHOT
118/246| openHAB Add-ons :: Bundles :: Network Binding 2.5.3-SNAPSHOT
119/246| openHAB Add-ons :: Bundles :: Network UPS Tools Binding 2.5.3-SNAPSHOT
120/246| openHAB Add-ons :: Bundles :: Nibe Heatpump Binding 2.5.3-SNAPSHOT
121/246| openHAB Add-ons :: Bundles :: NibeUplink Binding 2.5.3-SNAPSHOT
122/246| openHAB Add-ons :: Bundles :: Nikobus Binding 2.5.3-SNAPSHOT
123/246| openHAB Add-ons :: Bundles :: Niko Home Control Binding 2.5.3-SNAPSHOT
124/246| openHAB Add-ons :: Bundles :: NTP Binding 2.5.3-SNAPSHOT
125/246| openHAB Add-ons :: Bundles :: Nuki Binding 2.5.3-SNAPSHOT
126/246| openHAB Add-ons :: Bundles :: Oceanic Binding 2.5.3-SNAPSHOT
127/246| openHAB Add-ons :: Bundles :: OmnikInverter Binding 2.5.3-SNAPSHOT
128/246| openHAB Add-ons :: Bundles :: OneBusAway Binding 2.5.3-SNAPSHOT
129/246| openHAB Add-ons :: Bundles :: OneWireGPIO Binding 2.5.3-SNAPSHOT
130/246| openHAB Add-ons :: Bundles :: OneWire Binding 2.5.3-SNAPSHOT
131/246| openHAB Add-ons :: Bundles :: Onkyo Binding 2.5.3-SNAPSHOT
132/246| openHAB Add-ons :: Bundles :: OpenGarage Binding 2.5.3-SNAPSHOT
133/246| openHAB Add-ons :: Bundles :: OpenSprinkler Binding 2.5.3-SNAPSHOT
134/246| openHAB Add-ons :: Bundles :: OpenUV Binding 2.5.3-SNAPSHOT
135/246| openHAB Add-ons :: Bundles :: OpenWeatherMap Binding 2.5.3-SNAPSHOT
136/246| openHAB Add-ons :: Bundles :: Orvibo Binding 2.5.3-SNAPSHOT
137/246| openHAB Add-ons :: Bundles :: ParadoxAlarm Binding 2.5.3-SNAPSHOT
138/246| openHAB Add-ons :: Bundles :: Pentair Binding 2.5.3-SNAPSHOT
139/246| openHAB Add-ons :: Bundles :: PHC Binding 2.5.3-SNAPSHOT
140/246| openHAB Add-ons :: Bundles :: PioneerAvr Binding 2.5.3-SNAPSHOT
141/246| openHAB Add-ons :: Bundles :: pixometer Binding 2.5.3-SNAPSHOT
142/246| openHAB Add-ons :: Bundles :: PJLink Binding 2.5.3-SNAPSHOT
143/246| openHAB Add-ons :: Bundles :: PLCLogo Binding 2.5.3-SNAPSHOT
144/246| openHAB Add-ons :: Bundles :: Plugwise Binding 2.5.3-SNAPSHOT
145/246| openHAB Add-ons :: Bundles :: Powermax Binding 2.5.3-SNAPSHOT
146/246| openHAB Add-ons :: Bundles :: Pulseaudio Binding 2.5.3-SNAPSHOT
147/246| openHAB Add-ons :: Bundles :: Pushbullet Binding 2.5.3-SNAPSHOT
148/246| openHAB Add-ons :: Bundles :: RegoHeatPump Binding 2.5.3-SNAPSHOT
149/246| openHAB Add-ons :: Bundles :: Rfxcom Binding 2.5.3-SNAPSHOT
150/246| openHAB Add-ons :: Bundles :: RME Binding 2.5.3-SNAPSHOT
151/246| openHAB Add-ons :: Bundles :: Robonect Binding 2.5.3-SNAPSHOT
152/246| openHAB Add-ons :: Bundles :: Rotel Binding 2.5.3-SNAPSHOT
153/246| openHAB Add-ons :: Bundles :: RotelRa1x Binding 2.5.3-SNAPSHOT
154/246| openHAB Add-ons :: Bundles :: Russound Binding 2.5.3-SNAPSHOT
155/246| openHAB Add-ons :: Bundles :: SamsungTV Binding 2.5.3-SNAPSHOT
156/246| openHAB Add-ons :: Bundles :: Satel Binding 2.5.3-SNAPSHOT
157/246| openHAB Add-ons :: Bundles :: Seneye Binding 2.5.3-SNAPSHOT
158/246| openHAB Add-ons :: Bundles :: senseBox Binding 2.5.3-SNAPSHOT
159/246| openHAB Add-ons :: Bundles :: SerialButton Binding 2.5.3-SNAPSHOT
160/246| openHAB Add-ons :: Bundles :: Shelly Binding 2.5.3-SNAPSHOT
161/246| openHAB Add-ons :: Bundles :: Siemens RDS Binding 2.5.3-SNAPSHOT
162/246| openHAB Add-ons :: Bundles :: Sinope Binding 2.5.3-SNAPSHOT
163/246| openHAB Add-ons :: Bundles :: Silvercrest Wifi Socket Binding 2.5.3-SNAPSHOT
164/246| openHAB Add-ons :: Bundles :: SleepIQ Binding 2.5.3-SNAPSHOT
165/246| openHAB Add-ons :: Bundles :: SMA EnergyMeter Binding 2.5.3-SNAPSHOT
166/246| openHAB Add-ons :: Bundles :: Smartmeter Binding 2.5.3-SNAPSHOT
167/246| openHAB Add-ons :: Bundles :: SNMP Binding 2.5.3-SNAPSHOT
168/246| openHAB Add-ons :: Bundles :: SolarEdge Binding 2.5.3-SNAPSHOT
169/246| openHAB Add-ons :: Bundles :: Solar-Log Binding 2.5.3-SNAPSHOT
​170/246| openHAB Add-ons :: Bundles :: SomfyTahoma Binding 2.5.3-SNAPSHOT
171/246| openHAB Add-ons :: Bundles :: Sonos Binding 2.5.3-SNAPSHOT
172/246| openHAB Add-ons :: Bundles :: SonyAudio Binding 2.5.3-SNAPSHOT
173/246| openHAB Add-ons :: Bundles :: Sony Projector Binding 2.5.3-SNAPSHOT
174/246| openHAB Add-ons :: Bundles :: Spotify Binding 2.5.3-SNAPSHOT
175/246| openHAB Add-ons :: Bundles :: SqueezeBox Binding 2.5.3-SNAPSHOT
176/246| openHAB Add-ons :: Bundles :: Synop Analyzer Binding 2.5.3-SNAPSHOT
177/246| openHAB Add-ons :: Bundles :: Systeminfo Binding 2.5.3-SNAPSHOT
178/246| openHAB Add-ons :: Bundles :: Tado Binding 2.5.3-SNAPSHOT
179/246| openHAB Add-ons :: Bundles :: Tankerkoenig Binding 2.5.3-SNAPSHOT
180/246| openHAB Add-ons :: Bundles :: Telegram Binding 2.5.3-SNAPSHOT
181/246| openHAB Add-ons :: Bundles :: Tellstick Binding 2.5.3-SNAPSHOT
182/246| openHAB Add-ons :: Bundles :: Tesla Binding 2.5.3-SNAPSHOT
183/246| openHAB Add-ons :: Bundles :: TP-Link Smart Home Binding 2.5.3-SNAPSHOT
184/246| openHAB Add-ons :: Bundles :: TRÅDFRI Binding 2.5.3-SNAPSHOT
185/246| openHAB Add-ons :: Bundles :: UniFi Binding 2.5.3-SNAPSHOT
186/246| openHAB Add-ons :: Bundles :: Somfy URTSI II binding 2.5.3-SNAPSHOT
187/246| openHAB Add-ons :: Bundles :: ValloxMV Binding 2.5.3-SNAPSHOT
188/246| openHAB Add-ons :: Bundles :: Vektiva Binding 2.5.3-SNAPSHOT
189/246| openHAB Add-ons :: Bundles :: Volvo On Call Binding 2.5.3-SNAPSHOT
190/246| openHAB Add-ons :: Bundles :: Velbus Binding 2.5.3-SNAPSHOT
191/246| openHAB Add-ons :: Bundles :: Velux Binding 2.5.3-SNAPSHOT
192/246| openHAB Add-ons :: Bundles :: Vitotronic Binding 2.5.3-SNAPSHOT
193/246| openHAB Add-ons :: Bundles :: WeatherCompany Binding 2.5.3-SNAPSHOT
194/246| openHAB Add-ons :: Bundles :: WeatherUnderground Binding 2.5.3-SNAPSHOT
195/246| openHAB Add-ons :: Bundles :: Wemo Binding 2.5.3-SNAPSHOT
196/246| openHAB Add-ons :: Bundles :: WiFiLED Binding 2.5.3-SNAPSHOT
197/246| openHAB Add-ons :: Bundles :: Windcentrale Binding 2.5.3-SNAPSHOT
198/246| openHAB Add-ons :: Bundles :: XMLTV Binding 2.5.3-SNAPSHOT
199/246| openHAB Add-ons :: Bundles :: XMPPClient Binding 2.5.3-SNAPSHOT
200/246| openHAB Add-ons :: Bundles :: Yamaha Receiver Binding 2.5.3-SNAPSHOT
201/246| openHAB Add-ons :: Bundles :: Yeelight Binding 2.5.3-SNAPSHOT
202/246| openHAB Add-ons :: Bundles :: Zoneminder Binding 2.5.3-SNAPSHOT
203/246| openHAB Add-ons :: Bundles :: ZWay Binding 2.5.3-SNAPSHOT
204/246| openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace 2.5.3-SNAPSHOT
205/246| openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace (Automation) 2.5.3-SNAPSHOT
206/246| openHAB Add-ons :: Bundles :: IO :: Homekit 2.5.3-SNAPSHOT
207/246| openHAB Add-ons :: Bundles :: IO :: Hue Emulation Service 2.5.3-SNAPSHOT
208/246| openHAB Add-ons :: Bundles :: IO :: ImperiHome Integration Service 2.5.3-SNAPSHOT
209/246| openHAB Add-ons :: Bundles :: IO :: Java Sound Support 2.5.3-SNAPSHOT
210/246| openHAB Add-ons :: Bundles :: IO :: NEEO Integration 2.5.3-SNAPSHOT
211/246| openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector 2.5.3-SNAPSHOT
212/246| openHAB Add-ons :: Bundles :: IO :: MQTT Broker Moquette 2.5.3-SNAPSHOT
213/246| openHAB Add-ons :: Bundles :: IO :: Web Audio Support 2.5.3-SNAPSHOT
214/246| openHAB Add-ons :: Bundles :: Persistence Service :: MapDB 2.5.3-SNAPSHOT
215/246| openHAB Add-ons :: Bundles :: Transformation Service :: Binary To JSON 2.5.3-SNAPSHOT
216/246| openHAB Add-ons :: Bundles :: Transformation Service :: Exec 2.5.3-SNAPSHOT
217/246| openHAB Add-ons :: Bundles :: Transformation Service :: JavaScript 2.5.3-SNAPSHOT
218/246| openHAB Add-ons :: Bundles :: Transformation Service :: Jinja 2.5.3-SNAPSHOT
219/246| openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath 2.5.3-SNAPSHOT
220/246| openHAB Add-ons :: Bundles :: Transformation Service :: RegEx 2.5.3-SNAPSHOT
221/246| openHAB Add-ons :: Bundles :: Transformation Service :: Scale 2.5.3-SNAPSHOT
222/246| openHAB Add-ons :: Bundles :: Transformation Service :: XPath 2.5.3-SNAPSHOT
223/246| openHAB Add-ons :: Bundles :: Transformation Service :: Xslt 2.5.3-SNAPSHOT
224/246| openHAB Add-ons :: Bundles :: Voice :: Google Cloud Text-to-Speech 2.5.3-SNAPSHOT
225/246| openHAB Add-ons :: Bundles :: Voice :: macOS Text-to-Speech 2.5.3-SNAPSHOT
226/246| openHAB Add-ons :: Bundles :: Voice :: Mary Text-to-Speech 2.5.3-SNAPSHOT
227/246| openHAB Add-ons :: Bundles :: Voice :: Pico Text-to-Speech 2.5.3-SNAPSHOT
228/246| openHAB Add-ons :: Bundles :: Voice :: Polly Text-to-Speech 2.5.3-SNAPSHOT
229/246| openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech 2.5.3-SNAPSHOT
230/246| openHAB Add-ons :: BOM :: openHAB Add-ons 2.5.3-SNAPSHOT
231/246| openHAB Add-ons :: Features :: Karaf 2.5.3-SNAPSHOT
232/246| openHAB Add-ons :: Features :: Karaf :: Add-ons External 2.5.3-SNAPSHOT
​233/246| openHAB Add-ons :: Features :: Karaf :: Add-ons 2.5.3-SNAPSHOT
234/246| openHAB Add-ons :: Integration Tests 2.5.3-SNAPSHOT
235/246| openHAB Add-ons :: Integration Tests :: Astro Binding Tests 2.5.3-SNAPSHOT
236/246| openHAB Add-ons :: Integration Tests :: AVM FRITZ! Binding Tests 2.5.3-SNAPSHOT
237/246| openHAB Add-ons :: Integration Tests :: Feed Binding Tests 2.5.3-SNAPSHOT
238/246| openHAB Add-ons :: Integration Tests :: hue Binding Tests 2.5.3-SNAPSHOT
239/246| openHAB Add-ons :: Integration Tests :: MaxCube Binding Tests 2.5.3-SNAPSHOT
240/246| openHAB Add-ons :: Integration Tests :: Nest Binding Tests 2.5.3-SNAPSHOT
​241/246| openHAB Add-ons :: Integration Tests :: NTP Binding Tests 2.5.3-SNAPSHOT
242/246| openHAB Add-ons :: Integration Tests :: Systeminfo Binding Tests 2.5.3-SNAPSHOT
243/246| openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding 2.5.3-SNAPSHOT
244/246| openHAB Add-ons :: Integration Tests :: Wemo Binding Tests 2.5.3-SNAPSHOT
245/246| openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests 2.5.3-SNAPSHOT
08:41:16.072 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:16.072 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:16.073 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_drive_name -> systeminfo:computer:work:drive#name from ManagedItemChannelLinkProvider.
08:41:16.073 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
08:41:16.073 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
08:41:16.073 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
08:41:16.073 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
08:41:16.073 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
08:41:16.076 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:41:16.076 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:41:16.077 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
08:41:16.077 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
08:41:16.077 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
08:41:16.077 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
08:41:16.078 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.ManagedThingProvider" has been added.
08:41:16.078 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.link.ManagedItemChannelLinkProvider" has been added.
08:41:16.086 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.internal.ChannelItemProvider" has been added.
08:41:16.087 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' added
08:41:16.087 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl" has been added.
08:41:16.087 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.items.ManagedItemProvider" has been added.
08:41:16.089 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is tracked by ThingManager.
08:41:16.089 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling 'SysteminfoHandlerFactory.registerHandler()' for thing 'systeminfo:computer:work'.
08:41:16.089 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work' needs [], has [interval_high, interval_medium].
08:41:16.089 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work:storage#available' needs [], has [priority, pid].
08:41:16.090 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling initialize handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@44536de4'.
08:41:16.090 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:16.091 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:16.091 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:16.091 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:16.091 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start initializing!
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Systeminfo implementation is instantiated!
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start reading Thing configuration.
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for medium priority channels set to 3 s
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for high priority channels set to 1 s
08:41:16.092 [safeCall-1] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Updated element systeminfo:computer:work in ManagedThingProvider.
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Properties updated!
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule high priority tasks at fixed rate 1 s.
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule medium priority tasks at fixed rate 3 s.
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule one time update for low priority tasks.
08:41:16.092 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Thing is successfully initialized!
08:41:16.092 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_storage_available -> systeminfo:computer:work:storage#available to ManagedItemChannelLinkProvider.
08:41:16.092 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
08:41:16.093 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
08:41:16.093 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:storage#available to ManagedItemChannelLinkProvider.
08:41:16.093 [OH-thingLinkManager-3] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:storage#available!
08:41:17.093 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
08:41:17.093 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@44536de4'.
08:41:17.094 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:17.096 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:17.096 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:17.096 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:17.096 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:41:17.096 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
08:41:17.097 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
08:41:17.097 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@6293e39e'.
08:41:17.098 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:17.099 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:17.099 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:17.099 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:17.099 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:41:17.100 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_storage_available -> systeminfo:computer:work:storage#available from ManagedItemChannelLinkProvider.
08:41:17.100 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
08:41:17.100 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
08:41:17.100 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
08:41:17.100 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
08:41:17.100 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
08:41:17.101 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:41:17.101 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:41:17.101 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
08:41:17.102 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
08:41:17.102 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
08:41:17.102 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
Tests run  : 53
Passed     : 53
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.systeminfo.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.systeminfo.tests/target/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.systeminfo.tests/2.5.3-SNAPSHOT/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.systeminfo.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.systeminfo.tests/2.5.3-SNAPSHOT/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ----< org.openhab.addons.itests:org.openhab.binding.tradfri.tests >-----
[INFO] Building openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding 2.5.3-SNAPSHOT [243/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.binding.tradfri.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.binding.tradfri.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.binding.tradfri.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.binding.tradfri.tests ---
[INFO] Changes detected - recompiling the module!
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.binding.tradfri.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.binding.tradfri.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.binding.tradfri.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.binding.tradfri.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.binding.tradfri.tests ---
[INFO] Matching glob *
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for javax.measure.unit-api_1.0.0 [1] []
required wires for org.apache.commons.io_2.2.0 [2] []
required wires for org.apache.commons.lang_2.6.0 [3] []
required wires for org.apache.felix.configadmin_1.9.8 [4] []
required wires for org.apache.felix.scr_2.1.10 [5] []
required wires for org.osgi.service.event_1.4.0.201802012106 [6] []
required wires for org.openhab.core_2.5.0 [7] []
required wires for org.openhab.core.config.core_2.5.0 [8] []
required wires for ch.qos.logback.core_1.2.3 [9] []
required wires for org.openhab.core.config.discovery_2.5.0 [10] []
required wires for org.openhab.core.io.console_2.5.0 [11] []
required wires for org.openhab.core.thing_2.5.0 [12] []
required wires for slf4j.api_1.7.25 [13] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [14] []
required wires for com.google.gson_2.8.2.v20180104-1110 [15] []
required wires for javax.jmdns_3.5.5 [16] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [17] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [18] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [19] []
required wires for org.openhab.core.config.discovery.mdns_2.5.0 [20] []
required wires for org.openhab.core.io.transport.mdns_2.5.0 [21] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [22] []
required wires for org.objenesis_2.6.0 [23] []
required wires for org.openhab.core.test_2.5.0 [24] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [25] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [26] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [27] []
required wires for org.openhab.core.binding.xml_2.5.0 [28] []
required wires for org.openhab.core.config.xml_2.5.0 [29] []
required wires for org.openhab.core.thing.xml_2.5.0 [30] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [31] []
required wires for tec.uom.se_1.0.10 [32] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [33] []
required wires for net.bytebuddy.byte-buddy_1.9.10 [34] []
required wires for net.bytebuddy.byte-buddy-agent_1.9.10 [35] []
required wires for org.mockito.mockito-core_3.1.0 [36] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [37] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [38] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [39] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [40] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [41] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [42] []
required wires for org.eclipse.californium.core_2.0.0 [43] []
required wires for org.eclipse.californium.element-connector_2.0.0 [44] []
required wires for org.eclipse.californium.scandium_2.0.0 [45] []
required wires for org.openhab.binding.tradfri_2.5.3.202003080834 [46] []
required wires for org.openhab.binding.tradfri.tests_2.5.3.202003080841 [47] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.tradfri)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080834"; osgi.wiring.host="org.openhab.binding.tradfri"]
required wires for slf4j.simple_1.7.21 [48] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for biz.aQute.tester_4.3.0.201909301554 [49] []
required wires for org.openhab.binding.tradfri.tests_2.5.3.202003080841 [47] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.tradfri)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080834"; osgi.wiring.host="org.openhab.binding.tradfri"]
[safeCall-2] INFO org.eclipse.californium.scandium.dtls.InMemoryConnectionStore - Created new InMemoryConnectionStore [capacity: 100, connection expiration threshold: 60s]
[safeCall-2] INFO org.eclipse.californium.core.network.config.NetworkConfig - writing properties to file /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/test/tmp/testing/itest/Californium.properties
[safeCall-2] INFO org.eclipse.californium.core.network.RandomTokenGenerator - using tokens of 8 bytes in length
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps CoapEndpoint uses strict context
[safeCall-2] INFO org.eclipse.californium.core.network.stack.BlockwiseLayer - BlockwiseLayer uses MAX_MESSAGE_SIZE=1024, PREFERRED_BLOCK_SIZE=512, BLOCKWISE_STATUS_LIFETIME=300000, MAX_RESOURCE_BODY_SIZE=8192, BLOCKWISE_STRICT_BLOCK2_OPTION=false
[safeCall-2] INFO org.eclipse.californium.core.network.stack.ReliabilityLayer - ReliabilityLayer uses ACK_TIMEOUT=2000, ACK_RANDOM_FACTOR=1.5, and ACK_TIMEOUT_SCALE=2.0 as default
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Endpoint [coaps://0.0.0.0:0] requires an executor to start, using default single-threaded daemon executor
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - multiple network interfaces, using smallest MTU [1460]
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - DTLSConnector listening on 0.0.0.0/0.0.0.0:32795, recv buf = 106496, send buf = 106496, recv packet size = 16490, MTU = 1460
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Started endpoint at coaps://0.0.0.0:32795
[safeCall-2] INFO org.eclipse.californium.core.CoapClient - started set client endpoint 0.0.0.0/0.0.0.0:32795
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:32795] INFO org.eclipse.californium.scandium.DTLSConnector - Starting worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:32795]
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Destroying endpoint at coaps://0.0.0.0:32795
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Stopping endpoint at coaps://0.0.0.0:32795
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - Stopping DTLS connector on [0.0.0.0/0.0.0.0:32795]
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:32795] INFO org.eclipse.californium.scandium.DTLSConnector - Worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:32795] has terminated
[safeCall-2] INFO org.eclipse.californium.scandium.dtls.InMemoryConnectionStore - Created new InMemoryConnectionStore [capacity: 100, connection expiration threshold: 60s]
[safeCall-2] INFO org.eclipse.californium.core.network.RandomTokenGenerator - using tokens of 8 bytes in length
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps CoapEndpoint uses strict context
[safeCall-2] INFO org.eclipse.californium.core.network.stack.BlockwiseLayer - BlockwiseLayer uses MAX_MESSAGE_SIZE=1024, PREFERRED_BLOCK_SIZE=512, BLOCKWISE_STATUS_LIFETIME=300000, MAX_RESOURCE_BODY_SIZE=8192, BLOCKWISE_STRICT_BLOCK2_OPTION=false
[safeCall-2] INFO org.eclipse.californium.core.network.stack.ReliabilityLayer - ReliabilityLayer uses ACK_TIMEOUT=2000, ACK_RANDOM_FACTOR=1.5, and ACK_TIMEOUT_SCALE=2.0 as default
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Endpoint [coaps://0.0.0.0:0] requires an executor to start, using default single-threaded daemon executor
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - multiple network interfaces, using smallest MTU [1460]
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - DTLSConnector listening on 0.0.0.0/0.0.0.0:35223, recv buf = 106496, send buf = 106496, recv packet size = 16490, MTU = 1460
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Started endpoint at coaps://0.0.0.0:35223
[safeCall-2] INFO org.eclipse.californium.core.CoapClient - started set client endpoint 0.0.0.0/0.0.0.0:35223
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:35223] INFO org.eclipse.californium.scandium.DTLSConnector - Starting worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:35223]
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Destroying endpoint at coaps://0.0.0.0:35223
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Stopping endpoint at coaps://0.0.0.0:35223
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - Stopping DTLS connector on [0.0.0.0/0.0.0.0:35223]
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:35223] INFO org.eclipse.californium.scandium.DTLSConnector - Worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:35223] has terminated
Tests run  : 7
Passed     : 7
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.tradfri.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.tradfri.tests/2.5.3-SNAPSHOT/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.tradfri.tests/2.5.3-SNAPSHOT/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ------< org.openhab.addons.itests:org.openhab.binding.wemo.tests >------
[INFO] Building openHAB Add-ons :: Integration Tests :: Wemo Binding Tests 2.5.3-SNAPSHOT [244/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.binding.wemo.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.binding.wemo.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.binding.wemo.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.binding.wemo.tests ---
[INFO] Changes detected - recompiling the module!
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[26,803] The type InboxFilterCriteria is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[36,1242] The import org.openhab.binding.wemo.internal.discovery.WemoDiscoveryService is never used
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[76,2493] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[78,2614] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[79,2653] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[83,2763] Potential null pointer access: The variable device may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2988] The method get(InboxFilterCriteria) from the type Inbox is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2996] The type InboxFilterCriteria is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2996] The constructor InboxFilterCriteria(ThingUID, DiscoveryResultFlag) is deprecated
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/test/GenericWemoOSGiTest.java:[118,4936] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull ChannelTypeProvider'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/test/GenericWemoOSGiTest.java:[119,5047] The constructor ChannelType(ChannelTypeUID, boolean, String, ChannelKind, String, String, String, Set<String>, StateDescription, EventDescription, URI) is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoLightHandlerOSGiTest.java:[42,1534] The import org.openhab.binding.wemo.internal.handler.WemoLightHandler is never used
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoHandlerTest.java:[61,2176] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull Thing'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoMakerHandlerOSGiTest.java:[40,1406] The import org.openhab.binding.wemo.internal.handler.WemoMakerHandler is never used
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoLinkDiscoveryServiceOSGiTest.java:[60,2144] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull Bridge'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoLinkDiscoveryServiceOSGiTest.java:[64,2352] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull WemoBridgeHandler'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.binding.wemo.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.binding.wemo.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.binding.wemo.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.binding.wemo.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.binding.wemo.tests ---
[INFO] Matching glob *
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for ch.qos.logback.core_1.2.3 [1] []
required wires for com.google.gson_2.8.2.v20180104-1110 [2] []
required wires for javax.measure.unit-api_1.0.0 [3] []
required wires for org.apache.commons.exec_1.1.0 [4] []
required wires for org.apache.commons.io_2.2.0 [5] []
required wires for org.apache.commons.lang_2.6.0 [6] []
required wires for org.apache.felix.configadmin_1.9.8 [7] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [8] []
required wires for org.apache.felix.scr_2.1.10 [9] []
required wires for org.apache.xbean.bundleutils_4.12.0 [10] []
required wires for org.apache.xbean.finder_4.12.0 [11] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [12] []
required wires for org.jupnp_2.5.2 [13] []
required wires for org.objenesis_2.6.0 [14] []
required wires for org.openhab.core_2.5.0 [15] []
required wires for org.openhab.core.config.core_2.5.0 [16] []
required wires for org.openhab.core.config.discovery_2.5.0 [17] []
required wires for org.openhab.core.config.discovery.upnp_2.5.0 [18] []
required wires for org.openhab.core.io.console_2.5.0 [19] []
required wires for org.openhab.core.io.net_2.5.0 [20] []
required wires for org.openhab.core.io.transport.upnp_2.5.0 [21] []
required wires for org.openhab.core.test_2.5.0 [22] []
required wires for org.openhab.core.thing_2.5.0 [23] []
required wires for org.osgi.service.event_1.4.0.201802012106 [24] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [25] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [26] []
required wires for slf4j.api_1.7.25 [27] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [28] []
required wires for org.openhab.core.binding.xml_2.5.0 [29] []
required wires for org.openhab.core.config.xml_2.5.0 [30] []
required wires for org.openhab.core.thing.xml_2.5.0 [31] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [32] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [33] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [34] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [35] []
required wires for tec.uom.se_1.0.10 [36] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [37] []
required wires for net.bytebuddy.byte-buddy_1.9.10 [38] []
required wires for net.bytebuddy.byte-buddy-agent_1.9.10 [39] []
required wires for org.mockito.mockito-core_3.1.0 [40] []
required wires for org.objectweb.asm_7.1.0 [41] []
required wires for org.objectweb.asm.commons_7.1.0 [42] []
required wires for org.objectweb.asm.tree_7.1.0 [43] []
required wires for org.eclipse.jetty.client_9.4.20.v20190813 [44] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [45] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [46] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [47] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [48] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [49] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [50] []
required wires for org.eclipse.jetty.websocket.api_9.4.20.v20190813 [51] []
required wires for org.eclipse.jetty.websocket.client_9.4.20.v20190813 [52] []
required wires for org.eclipse.jetty.websocket.common_9.4.20.v20190813 [53] []
required wires for org.eclipse.jetty.xml_9.4.20.v20190813 [54] []
required wires for org.ops4j.pax.web.pax-web-api_7.2.11 [55] []
required wires for slf4j.simple_1.7.21 [56] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for org.openhab.binding.wemo_2.5.3.202003080835 [57] []
required wires for org.openhab.binding.wemo.tests_2.5.3.202003080841 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.wemo)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080835"; osgi.wiring.host="org.openhab.binding.wemo"]
required wires for biz.aQute.tester_4.3.0.201909301554 [59] []
required wires for org.openhab.binding.wemo.tests_2.5.3.202003080841 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.wemo)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080835"; osgi.wiring.host="org.openhab.binding.wemo"]
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:insight:Test-1_0-22124' to inbox.
[OH-thingHandler-1] INFO org.eclipse.jetty.util.log - Logging initialized @2653ms to org.eclipse.jetty.util.log.Slf4jLog
[OH-thingHandler-1] ERROR org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl - Could not start Jetty http client
java.lang.InterruptedException
	at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1302)
	at java.util.concurrent.CountDownLatch.await(CountDownLatch.java:231)
	at org.eclipse.jetty.io.ManagedSelector.doStart(ManagedSelector.java:122)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.io.SelectorManager.doStart(SelectorManager.java:262)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.client.AbstractConnectorHttpClientTransport.doStart(AbstractConnectorHttpClientTransport.java:64)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.client.HttpClient.doStart(HttpClient.java:244)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$2.run(WebClientFactoryImpl.java:280)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$2.run(WebClientFactoryImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.createHttpClientInternal(WebClientFactoryImpl.java:256)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.access$7(WebClientFactoryImpl.java:253)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$1.run(WebClientFactoryImpl.java:224)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$1.run(WebClientFactoryImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.initialize(WebClientFactoryImpl.java:215)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.getCommonHttpClient(WebClientFactoryImpl.java:166)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrlAndGetReponse(HttpUtil.java:194)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrl(HttpUtil.java:156)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrl(HttpUtil.java:131)
	at org.openhab.binding.wemo.internal.http.WemoHttpCall.executeCall(WemoHttpCall.java:44)
	at org.openhab.binding.wemo.internal.handler.WemoHandler.updateWemoState(WemoHandler.java:443)
	at org.openhab.binding.wemo.internal.handler.WemoHandler$1.run(WemoHandler.java:101)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[OH-thingHandler-1] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to get actual state for device 'wemo:insight:Test-1_0-22124': Could not start Jetty http client
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:socket:Test-1_0-22124' to inbox.
[main] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to send command 'OFF' for device 'wemo:socket:TestThing': Invalid URI host: null (authority: 127.0.0.1:null)
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:socket:Test-1_0-22124' to inbox.
[main] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to get actual state for device 'wemo:socket:TestThing': Invalid URI host: null (authority: 127.0.0.1:null)
[forceRemove-1] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@1292071f' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[safeCall-1] ERROR org.eclipse.smarthome.core.internal.common.AbstractInvocationHandler - An error occurred while calling method 'Runnable.run()' on 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$$Lambda$111/1996556848@7bd3e604': null
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.setThingStatus(ThingManagerImpl.java:1177)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.lambda$5(ThingManagerImpl.java:804)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.eclipse.smarthome.core.internal.common.AbstractInvocationHandler.invokeDirect(AbstractInvocationHandler.java:152)
	at org.eclipse.smarthome.core.internal.common.Invocation.call(Invocation.java:52)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-2] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@1292071f' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:467)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-2] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@4047d2d9' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.getBridge(ThingManagerImpl.java:774)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.notifyBridgeAboutChildHandlerDisposal(ThingManagerImpl.java:922)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.disposeHandler(ThingManagerImpl.java:824)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:859)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-1] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@4047d2d9' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-2] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@80bfdc6' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-2] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@59dc36d4' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:Maker:Test-1_0-22124' to inbox.
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:Maker:Test-1_0-22124' to inbox.
Tests run  : 24
Passed     : 24
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.wemo.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.wemo.tests/2.5.3-SNAPSHOT/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.wemo.tests/2.5.3-SNAPSHOT/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ----< org.openhab.addons.itests:org.openhab.io.hueemulation.tests >-----
[INFO] Building openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests 2.5.3-SNAPSHOT [245/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.io.hueemulation.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.io.hueemulation.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.io.hueemulation.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/main/resources
[INFO] 
[INFO] --- build-helper-maven-plugin:3.0.0:reserve-network-port (reserve-network-port) @ org.openhab.io.hueemulation.tests ---
[INFO] Reserved port 35323 for org.osgi.service.http.port
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.io.hueemulation.tests ---
[INFO] Changes detected - recompiling the module!
[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
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.io.hueemulation.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.io.hueemulation.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.io.hueemulation.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.io.hueemulation.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/org.openhab.io.hueemulation.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.io.hueemulation.tests ---
[INFO] Matching glob *
[main] INFO org.eclipse.jetty.util.log - Logging initialized @2310ms to org.eclipse.jetty.util.log.Slf4jLog
[main] INFO org.ops4j.pax.web.service.internal.Activator - EventAdmin support enabled, servlet events will be postet to topics.
[main] INFO org.ops4j.pax.web.service.internal.Activator - LogService support enabled, log events will be created.
[main] INFO org.ops4j.pax.web.service.internal.Activator - Pax Web started
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for ch.qos.logback.core_1.2.3 [1] []
required wires for com.google.gson_2.8.2.v20180104-1110 [2] []
required wires for javax.measure.unit-api_1.0.0 [3] []
required wires for org.apache.commons.io_2.2.0 [4] []
required wires for org.apache.commons.lang_2.6.0 [5] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [6] []
required wires for org.apache.felix.scr_2.1.10 [7] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [8] []
required wires for org.openhab.core_2.5.0 [9] []
required wires for org.openhab.core.config.core_2.5.0 [10] []
required wires for org.openhab.core.test_2.5.0 [11] []
required wires for org.osgi.service.event_1.4.0.201802012106 [12] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [13] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [14] []
required wires for slf4j.api_1.7.25 [15] []
required wires for org.apache.commons.exec_1.1.0 [16] []
required wires for org.apache.felix.configadmin_1.9.8 [17] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [18] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [19] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [20] []
required wires for org.apache.xbean.bundleutils_4.12.0 [21] []
required wires for org.apache.xbean.finder_4.12.0 [22] []
required wires for org.jupnp_2.5.2 [23] []
required wires for org.openhab.core.automation_2.5.0 [24] []
required wires for org.openhab.core.io.console_2.5.0 [25] []
required wires for org.openhab.core.io.net_2.5.0 [26] []
required wires for org.openhab.core.thing_2.5.0 [27] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [28] []
required wires for org.openhab.core.binding.xml_2.5.0 [29] []
required wires for org.openhab.core.config.xml_2.5.0 [30] []
required wires for org.openhab.core.thing.xml_2.5.0 [31] []
required wires for com.eclipsesource.jaxrs.jersey-all_2.22.2 [32] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [33] []
required wires for tec.uom.se_1.0.10 [34] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [35] []
required wires for org.openhab.core.ephemeris_2.5.0 [36] []
required wires for org.objectweb.asm_7.1.0 [37] []
required wires for org.objectweb.asm.commons_7.1.0 [38] []
required wires for org.objectweb.asm.tree_7.1.0 [39] []
required wires for jollyday_0.5.8 [40] []
required wires for org.threeten.extra_1.4.0 [41] []
required wires for org.eclipse.jetty.client_9.4.20.v20190813 [42] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [43] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [44] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [45] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [46] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [47] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [48] []
required wires for org.eclipse.jetty.websocket.api_9.4.20.v20190813 [49] []
required wires for org.eclipse.jetty.websocket.client_9.4.20.v20190813 [50] []
required wires for org.eclipse.jetty.websocket.common_9.4.20.v20190813 [51] []
required wires for org.eclipse.jetty.xml_9.4.20.v20190813 [52] []
required wires for org.ops4j.pax.swissbox.optional.jcl_1.8.3 [53] []
required wires for org.ops4j.pax.web.pax-web-api_7.2.11 [54] []
required wires for org.ops4j.pax.web.pax-web-jetty_7.2.11 [55] []
required wires for org.ops4j.pax.web.pax-web-runtime_7.2.11 [56] []
required wires for org.ops4j.pax.web.pax-web-spi_7.2.11 [57] []
required wires for slf4j.simple_1.7.21 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for org.openhab.io.hueemulation_2.5.3.202003080835 [59] []
required wires for org.openhab.io.hueemulation.tests_2.5.3.202003080841 [60] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.io.hueemulation)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080835"; osgi.wiring.host="org.openhab.io.hueemulation"]
required wires for biz.aQute.tester_4.3.0.201909301554 [61] []
required wires for org.openhab.io.hueemulation.tests_2.5.3.202003080841 [60] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.io.hueemulation)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080835"; osgi.wiring.host="org.openhab.io.hueemulation"]
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyFactoryImpl - No ALPN class available
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyFactoryImpl - HTTP/2 not available, creating standard ServerConnector for Http
[OH-common-1] INFO org.openhab.io.hueemulation.internal.ConfigStore - No unique ID assigned yet. Assigning fc6ccc69-13ac-4886-a0ba-360064c1acb4 and restarting...
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyServerImpl - Pax Web available at [0.0.0.0]:[35323]
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.openhab.hueemulation)] INFO org.openhab.io.hueemulation.internal.ConfigStore - Using discovery ip fe80:0:0:0:4001:aff:fe14:52%ens4
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.openhab.hueemulation)] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[EventAdmin Async Event Dispatcher Thread] INFO org.ops4j.pax.web.service.internal.HttpServiceFactoryImpl - Binding bundle: [org.openhab.io.hueemulation_2.5.3.202003080835 [59]] to http service
[EventAdmin Async Event Dispatcher Thread] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - will add org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer to ServletContainerInitializers
[EventAdmin Async Event Dispatcher Thread] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - added ServletContainerInitializer: org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer
[EventAdmin Async Event Dispatcher Thread] INFO org.ops4j.pax.web.service.jetty.internal.HttpServiceContext - registering context DefaultHttpContext [bundle=org.openhab.io.hueemulation_2.5.3.202003080835 [59], contextID=default], with context-name: 
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.session - DefaultSessionIdManager workerName=node0
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.session - No SessionScavenger set, using defaults
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.session - node0 Scavenging every 660000ms
Components implementing org.openhab.io.hueemulation.internal.HueEmulationService:
110 [SATISFIED] org.openhab.io.hueemulation.internal.HueEmulationService in org.openhab.io.hueemulation
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.handler.ContextHandler - Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.openhab.io.hueemulation_2.5.3.202003080835 [59], contextID=default]}
Components implementing org.openhab.io.hueemulation.internal.HueEmulationService:
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.Server - jetty-9.4.20.v20190813; built: 2019-08-13T21:28:18.144Z; git: 84700530e645e812b336747464d6fbbf370c9a20; jvm 1.8.0_242-8u242-b08-0ubuntu3~16.04-b08
110 [SATISFIED] org.openhab.io.hueemulation.internal.HueEmulationService in org.openhab.io.hueemulation
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.AbstractConnector - Started default@69504484{HTTP/1.1,[http/1.1]}{0.0.0.0:35323}
[EventAdmin Async Event Dispatcher Thread] INFO org.eclipse.jetty.server.Server - Started @2910ms
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.internal.HttpServiceFactoryImpl - Binding bundle: [org.jupnp_2.5.2 [23]] to http service
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.jupnp.UpnpServiceImpl - Starting UPnP service...
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.jupnp.transport.impl.osgi.HttpServiceServletContainerAdapter - Registering UPnP callback servlet as /upnpcallback
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - will add org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer to ServletContainerInitializers
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] WARN org.ops4j.pax.web.utils.ServletContainerInitializerScanner - failed to parse and instantiate of javax.servlet.ServletContainerInitializer in classpath
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.jetty.internal.HttpServiceContext - registering context DefaultHttpContext [bundle=org.jupnp_2.5.2 [23], contextID=custom], with context-name: 
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.handler.ContextHandler - Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.jupnp_2.5.2 [23], contextID=custom]}
[qtp594339911-41] INFO org.eclipse.jetty.util.TypeUtil - JVM Runtime does not support Modules
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
[main] INFO org.openhab.io.hueemulation.internal.HueEmulationService - Hue Emulation service available under /api
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on [fe80:0:0:0:4001:aff:fe14:52]:35323
[HueEmulation UPNP Server] WARN org.openhab.io.hueemulation.internal.upnp.UpnpServer - Could not send UPNP response: Network is unreachable (sendto failed)
[HueEmulation UPNP Server] WARN org.openhab.io.hueemulation.internal.upnp.UpnpServer - Could not send UPNP response: Network is unreachable (sendto failed)
[HueEmulation UPNP Server] WARN org.openhab.io.hueemulation.internal.upnp.UpnpServer - Could not send UPNP response: Network is unreachable (sendto failed)
TEST UpnpServiceTest(org.openhab.io.hueemulation.internal.HueEmulationServiceOSGiTest) <<< ERROR: test timed out after 10000 milliseconds
org.junit.runners.model.TestTimedOutException: test timed out after 10000 milliseconds
	at java.lang.Thread.sleep(Native Method)
	at org.eclipse.smarthome.test.java.JavaTest.internalSleep(JavaTest.java:202)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:144)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:120)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:73)
	at org.openhab.io.hueemulation.internal.HueEmulationServiceOSGiTest.UpnpServiceTest(HueEmulationServiceOSGiTest.java:93)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
	at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.lang.Thread.run(Thread.java:748)
Tests run  : 1
Passed     : 0
Errors     : 1
Failures   : 0
[INFO] 1 Error(s)
[ERROR] Error   : Exit code remote process 1: /usr/lib/jvm/java-1.8.0-openjdk-amd64/bin/java -cp /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache/biz.aQute.launcher/biz.aQute.launcher.pre.jar -Dlauncher.properties="/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/generated/launch5690964196074023845.properties" -Dorg.osgi.service.http.port=35323 -ea -Dlauncher.runpath="/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index/org.eclipse.osgi-3.13.100.v20180827-1536.jar,/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache/biz.aQute.launcher/biz.aQute.launcher-4.3.0.jar" aQute.launcher.pre.EmbeddedLauncher
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for openHAB Add-ons 2.5.3-SNAPSHOT:
[INFO] 
[INFO] openHAB Add-ons .................................... SUCCESS [  3.069 s]
[INFO] openHAB Add-ons :: BOM ............................. SUCCESS [  0.485 s]
[INFO] openHAB Add-ons :: BOM :: Runtime Index ............ SUCCESS [  8.895 s]
[INFO] openHAB Add-ons :: BOM :: Test Index ............... SUCCESS [  0.327 s]
[INFO] openHAB Add-ons :: BOM :: openHAB Core Index ....... SUCCESS [  1.140 s]
[INFO] openHAB Add-ons :: Bundles ......................... SUCCESS [  3.108 s]
[INFO] openHAB Add-ons :: Bundles :: Airquality Binding ... SUCCESS [ 10.640 s]
[INFO] openHAB Add-ons :: Bundles :: AirVisual Node Air Quality Monitor Binding SUCCESS [  6.284 s]
[INFO] openHAB Add-ons :: Bundles :: AllPlay Binding ...... SUCCESS [  5.837 s]
[INFO] openHAB Add-ons :: Bundles :: Amazon Dash Button Binding SUCCESS [  3.882 s]
[INFO] openHAB Add-ons :: Bundles :: Amazon Echo Control Binding SUCCESS [  3.050 s]
[INFO] openHAB Add-ons :: Bundles :: Ambient Weather Binding SUCCESS [  2.673 s]
[INFO] openHAB Add-ons :: Bundles :: Astro Binding ........ SUCCESS [  4.217 s]
[INFO] openHAB Add-ons :: Bundles :: Atlona Binding ....... SUCCESS [  2.791 s]
[INFO] openHAB Add-ons :: Bundles :: Autelis Binding ...... SUCCESS [  2.146 s]
[INFO] openHAB Add-ons :: Bundles :: AVM FRITZ! Binding ... SUCCESS [  4.381 s]
[INFO] openHAB Add-ons :: Bundles :: BigAssFan Binding .... SUCCESS [  2.242 s]
[INFO] openHAB Add-ons :: Bundles :: Bluetooth Binding .... SUCCESS [  5.741 s]
[INFO] openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter SUCCESS [  3.469 s]
[INFO] openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter SUCCESS [  4.128 s]
[INFO] openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter SUCCESS [  3.014 s]
[INFO] openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter SUCCESS [  2.591 s]
[INFO] openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter SUCCESS [  2.591 s]
[INFO] openHAB Add-ons :: Bundles :: Bosch Indego Binding . SUCCESS [  2.377 s]
[INFO] openHAB Add-ons :: Bundles :: BoseSoundTouch Binding SUCCESS [  2.424 s]
[INFO] openHAB Add-ons :: Bundles :: Buienradar Binding ... SUCCESS [  3.874 s]
[INFO] openHAB Add-ons :: Bundles :: Chromecast Binding ... SUCCESS [ 42.618 s]
[INFO] openHAB Add-ons :: Bundles :: CM11A Binding ........ SUCCESS [  2.489 s]
[INFO] openHAB Add-ons :: Bundles :: CoolMasterNet Binding  SUCCESS [  2.293 s]
[INFO] openHAB Add-ons :: Bundles :: Daikin Binding ....... SUCCESS [  2.411 s]
[INFO] openHAB Add-ons :: Bundles :: Dark Sky Binding ..... SUCCESS [  3.798 s]
[INFO] openHAB Add-ons :: Bundles :: Dresden Elektronik deCONZ Binding SUCCESS [  2.214 s]
[INFO] openHAB Add-ons :: Bundles :: Denon / Marantz Binding SUCCESS [  2.376 s]
[INFO] openHAB Add-ons :: Bundles :: Digiplex/EVO Binding . SUCCESS [  2.540 s]
[INFO] openHAB Add-ons :: Bundles :: DigitalSTROM Binding . SUCCESS [  2.777 s]
[INFO] openHAB Add-ons :: Bundles :: D-Link Smart Home Binding SUCCESS [  2.032 s]
[INFO] openHAB Add-ons :: Bundles :: DMX Binding .......... SUCCESS [  5.074 s]
[INFO] openHAB Add-ons :: Bundles :: Doorbird Binding ..... SUCCESS [  2.358 s]
[INFO] openHAB Add-ons :: Bundles :: DSCAlarm Binding ..... SUCCESS [  2.278 s]
[INFO] openHAB Add-ons :: Bundles :: DSMR Binding ......... SUCCESS [  4.957 s]
[INFO] openHAB Add-ons :: Bundles :: DwdUnwetter Binding .. SUCCESS [  3.906 s]
[INFO] openHAB Add-ons :: Bundles :: EleroTransmitterStick Binding SUCCESS [  2.069 s]
[INFO] openHAB Add-ons :: Bundles :: EnOcean Binding ...... SUCCESS [  2.680 s]
[INFO] openHAB Add-ons :: Bundles :: EnturNo Binding ...... SUCCESS [  1.933 s]
[INFO] openHAB Add-ons :: Bundles :: evohome Binding ...... SUCCESS [  1.900 s]
[INFO] openHAB Add-ons :: Bundles :: Exec Binding ......... SUCCESS [  2.347 s]
[INFO] openHAB Add-ons :: Bundles :: Feed Binding ......... SUCCESS [  2.547 s]
[INFO] openHAB Add-ons :: Bundles :: Feican Binding ....... SUCCESS [  1.854 s]
[INFO] openHAB Add-ons :: Bundles :: Folding Binding ...... SUCCESS [  2.105 s]
[INFO] openHAB Add-ons :: Bundles :: Foobot Binding ....... SUCCESS [  3.040 s]
[INFO] openHAB Add-ons :: Bundles :: Freebox Binding ...... SUCCESS [  2.130 s]
[INFO] openHAB Add-ons :: Bundles :: Fronius Binding ...... SUCCESS [  1.777 s]
[INFO] openHAB Add-ons :: Bundles :: FSInternetRadio Binding SUCCESS [  4.468 s]
[INFO] openHAB Add-ons :: Bundles :: FTP Upload Binding ... SUCCESS [  2.193 s]
[INFO] openHAB Add-ons :: Bundles :: Gardena Binding ...... SUCCESS [  1.886 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Map SUCCESS [  3.530 s]
[INFO] openHAB Add-ons :: Bundles :: GlobalCache Binding .. SUCCESS [  1.907 s]
[INFO] openHAB Add-ons :: Bundles :: GPSTracker Binding ... SUCCESS [  1.900 s]
[INFO] openHAB Add-ons :: Bundles :: GROHE ONDUS Binding .. SUCCESS [  1.923 s]
[INFO] openHAB Add-ons :: Bundles :: HarmonyHub Binding ... SUCCESS [  1.934 s]
[INFO] openHAB Add-ons :: Bundles :: HDanywhere Binding ... SUCCESS [  1.733 s]
[INFO] openHAB Add-ons :: Bundles :: Hunter Douglas PowerView Binding SUCCESS [  1.779 s]
[INFO] openHAB Add-ons :: Bundles :: Helios Binding ....... SUCCESS [  2.022 s]
[INFO] openHAB Add-ons :: Bundles :: Heos Binding ......... SUCCESS [  1.992 s]
[INFO] openHAB Add-ons :: Bundles :: Homematic Binding .... SUCCESS [  4.370 s]
[INFO] openHAB Add-ons :: Bundles :: HP Printer Binding ... SUCCESS [  1.839 s]
[INFO] openHAB Add-ons :: Bundles :: hue Binding .......... SUCCESS [  4.321 s]
[INFO] openHAB Add-ons :: Bundles :: Hydrawise Binding .... SUCCESS [  2.256 s]
[INFO] openHAB Add-ons :: Bundles :: Hyperion Binding ..... SUCCESS [  1.952 s]
[INFO] openHAB Add-ons :: Bundles :: iAquaLink Binding .... SUCCESS [  1.852 s]
[INFO] openHAB Add-ons :: Bundles :: iCloud Binding ....... SUCCESS [  1.971 s]
[INFO] openHAB Add-ons :: Bundles :: IHC Binding .......... SUCCESS [  4.906 s]
[INFO] openHAB Add-ons :: Bundles :: innogy Smarthome Binding SUCCESS [  2.083 s]
[INFO] openHAB Add-ons :: Bundles :: IPP Binding .......... SUCCESS [  3.595 s]
[INFO] openHAB Add-ons :: Bundles :: IRtrans Binding ...... SUCCESS [  1.779 s]
[INFO] openHAB Add-ons :: Bundles :: JeeLink Binding ...... SUCCESS [  2.413 s]
[INFO] openHAB Add-ons :: Bundles :: Keba Binding ......... SUCCESS [  2.140 s]
[INFO] openHAB Add-ons :: Bundles :: KM200 Binding ........ SUCCESS [  1.830 s]
[INFO] openHAB Add-ons :: Bundles :: KNX Binding .......... SUCCESS [  3.835 s]
[INFO] openHAB Add-ons :: Bundles :: Kodi Binding ......... SUCCESS [  3.019 s]
[INFO] openHAB Add-ons :: Bundles :: Konnected Binding .... SUCCESS [  1.738 s]
[INFO] openHAB Add-ons :: Bundles :: Kostal Binding ....... SUCCESS [  2.208 s]
[INFO] openHAB Add-ons :: Bundles :: LaMetric Time Binding  SUCCESS [  1.977 s]
[INFO] openHAB Add-ons :: Bundles :: Leap Motion Binding .. SUCCESS [  2.041 s]
[INFO] openHAB Add-ons :: Bundles :: LG HomBot Binding .... SUCCESS [  1.591 s]
[INFO] openHAB Add-ons :: Bundles :: LG TV Serial Binding . SUCCESS [  2.024 s]
[INFO] openHAB Add-ons :: Bundles :: LG webOS Binding ..... SUCCESS [  2.009 s]
[INFO] openHAB Add-ons :: Bundles :: LIFX Binding ......... SUCCESS [  2.034 s]
[INFO] openHAB Add-ons :: Bundles :: LIRC Binding ......... SUCCESS [  1.697 s]
[INFO] openHAB Add-ons :: Bundles :: LinuxInput Binding ... SUCCESS [  2.443 s]
[INFO] openHAB Add-ons :: Bundles :: Log Reader Binding ... SUCCESS [  1.975 s]
[INFO] openHAB Add-ons :: Bundles :: Loxone Binding ....... SUCCESS [  5.100 s]
[INFO] openHAB Add-ons :: Bundles :: Lutron Binding ....... SUCCESS [  2.222 s]
[INFO] openHAB Add-ons :: Bundles :: Mail Binding ......... SUCCESS [  3.074 s]
[INFO] openHAB Add-ons :: Bundles :: MaxCube Binding ...... SUCCESS [  2.143 s]
[INFO] openHAB Add-ons :: Bundles :: mcp23017 Binding ..... SUCCESS [  1.923 s]
[INFO] openHAB Add-ons :: Bundles :: MELCloud Binding ..... SUCCESS [  1.855 s]
[INFO] openHAB Add-ons :: Bundles :: meteoblue Binding .... SUCCESS [  1.675 s]
[INFO] openHAB Add-ons :: Bundles :: meteostick Binding ... SUCCESS [  1.846 s]
[INFO] openHAB Add-ons :: Bundles :: Miele Binding ........ SUCCESS [  1.887 s]
[INFO] openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Home Binding SUCCESS [  1.800 s]
[INFO] openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding . SUCCESS [  2.002 s]
[INFO] openHAB Add-ons :: Bundles :: Millheat Binding ..... SUCCESS [  4.941 s]
[INFO] openHAB Add-ons :: Bundles :: Milight Binding ...... SUCCESS [  2.102 s]
[INFO] openHAB Add-ons :: Bundles :: Minecraft Binding .... SUCCESS [  2.751 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Modbus Transport SUCCESS [ 12.053 s]
[INFO] openHAB Add-ons :: Bundles :: Modbus Binding ....... SUCCESS [  4.176 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Broker Binding .. SUCCESS [  4.687 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Things and Channels SUCCESS [  5.281 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention SUCCESS [  3.774 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Homie Convention  SUCCESS [  4.651 s]
[INFO] openHAB Add-ons :: Bundles :: Nanoleaf Binding ..... SUCCESS [  3.143 s]
[INFO] openHAB Add-ons :: Bundles :: Neato Binding ........ SUCCESS [  2.112 s]
[INFO] openHAB Add-ons :: Bundles :: Neeo Binding ......... SUCCESS [  2.102 s]
[INFO] openHAB Add-ons :: Bundles :: NeoHub Binding ....... SUCCESS [  2.153 s]
[INFO] openHAB Add-ons :: Bundles :: Nest Binding ......... SUCCESS [  2.355 s]
[INFO] openHAB Add-ons :: Bundles :: Netatmo Binding ...... SUCCESS [  2.638 s]
[INFO] openHAB Add-ons :: Bundles :: Network Binding ...... SUCCESS [  4.770 s]
[INFO] openHAB Add-ons :: Bundles :: Network UPS Tools Binding SUCCESS [  3.901 s]
[INFO] openHAB Add-ons :: Bundles :: Nibe Heatpump Binding  SUCCESS [  3.464 s]
[INFO] openHAB Add-ons :: Bundles :: NibeUplink Binding ... SUCCESS [  2.099 s]
[INFO] openHAB Add-ons :: Bundles :: Nikobus Binding ...... SUCCESS [  2.040 s]
[INFO] openHAB Add-ons :: Bundles :: Niko Home Control Binding SUCCESS [  2.207 s]
[INFO] openHAB Add-ons :: Bundles :: NTP Binding .......... SUCCESS [  1.799 s]
[INFO] openHAB Add-ons :: Bundles :: Nuki Binding ......... SUCCESS [  1.971 s]
[INFO] openHAB Add-ons :: Bundles :: Oceanic Binding ...... SUCCESS [  2.186 s]
[INFO] openHAB Add-ons :: Bundles :: OmnikInverter Binding  SUCCESS [  2.829 s]
[INFO] openHAB Add-ons :: Bundles :: OneBusAway Binding ... SUCCESS [  1.891 s]
[INFO] openHAB Add-ons :: Bundles :: OneWireGPIO Binding .. SUCCESS [  2.185 s]
[INFO] openHAB Add-ons :: Bundles :: OneWire Binding ...... SUCCESS [  5.105 s]
[INFO] openHAB Add-ons :: Bundles :: Onkyo Binding ........ SUCCESS [  2.005 s]
[INFO] openHAB Add-ons :: Bundles :: OpenGarage Binding ... SUCCESS [  2.065 s]
[INFO] openHAB Add-ons :: Bundles :: OpenSprinkler Binding  SUCCESS [  2.118 s]
[INFO] openHAB Add-ons :: Bundles :: OpenUV Binding ....... SUCCESS [  1.934 s]
[INFO] openHAB Add-ons :: Bundles :: OpenWeatherMap Binding SUCCESS [  2.328 s]
[INFO] openHAB Add-ons :: Bundles :: Orvibo Binding ....... SUCCESS [  2.096 s]
[INFO] openHAB Add-ons :: Bundles :: ParadoxAlarm Binding . SUCCESS [  2.081 s]
[INFO] openHAB Add-ons :: Bundles :: Pentair Binding ...... SUCCESS [  1.958 s]
[INFO] openHAB Add-ons :: Bundles :: PHC Binding .......... SUCCESS [  1.956 s]
[INFO] openHAB Add-ons :: Bundles :: PioneerAvr Binding ... SUCCESS [  2.118 s]
[INFO] openHAB Add-ons :: Bundles :: pixometer Binding .... SUCCESS [  2.015 s]
[INFO] openHAB Add-ons :: Bundles :: PJLink Binding ....... SUCCESS [  2.458 s]
[INFO] openHAB Add-ons :: Bundles :: PLCLogo Binding ...... SUCCESS [  2.080 s]
[INFO] openHAB Add-ons :: Bundles :: Plugwise Binding ..... SUCCESS [  2.333 s]
[INFO] openHAB Add-ons :: Bundles :: Powermax Binding ..... SUCCESS [  2.150 s]
[INFO] openHAB Add-ons :: Bundles :: Pulseaudio Binding ... SUCCESS [  1.891 s]
[INFO] openHAB Add-ons :: Bundles :: Pushbullet Binding ... SUCCESS [  2.294 s]
[INFO] openHAB Add-ons :: Bundles :: RegoHeatPump Binding . SUCCESS [  1.955 s]
[INFO] openHAB Add-ons :: Bundles :: Rfxcom Binding ....... SUCCESS [  4.242 s]
[INFO] openHAB Add-ons :: Bundles :: RME Binding .......... SUCCESS [  1.875 s]
[INFO] openHAB Add-ons :: Bundles :: Robonect Binding ..... SUCCESS [  4.625 s]
[INFO] openHAB Add-ons :: Bundles :: Rotel Binding ........ SUCCESS [  1.982 s]
[INFO] openHAB Add-ons :: Bundles :: RotelRa1x Binding .... SUCCESS [  2.039 s]
[INFO] openHAB Add-ons :: Bundles :: Russound Binding ..... SUCCESS [  2.444 s]
[INFO] openHAB Add-ons :: Bundles :: SamsungTV Binding .... SUCCESS [  2.017 s]
[INFO] openHAB Add-ons :: Bundles :: Satel Binding ........ SUCCESS [  2.508 s]
[INFO] openHAB Add-ons :: Bundles :: Seneye Binding ....... SUCCESS [  1.756 s]
[INFO] openHAB Add-ons :: Bundles :: senseBox Binding ..... SUCCESS [  1.878 s]
[INFO] openHAB Add-ons :: Bundles :: SerialButton Binding . SUCCESS [  1.828 s]
[INFO] openHAB Add-ons :: Bundles :: Shelly Binding ....... SUCCESS [  2.398 s]
[INFO] openHAB Add-ons :: Bundles :: Siemens RDS Binding .. SUCCESS [  1.809 s]
[INFO] openHAB Add-ons :: Bundles :: Sinope Binding ....... SUCCESS [  2.067 s]
[INFO] openHAB Add-ons :: Bundles :: Silvercrest Wifi Socket Binding SUCCESS [  1.921 s]
[INFO] openHAB Add-ons :: Bundles :: SleepIQ Binding ...... SUCCESS [  1.790 s]
[INFO] openHAB Add-ons :: Bundles :: SMA EnergyMeter Binding SUCCESS [  1.852 s]
[INFO] openHAB Add-ons :: Bundles :: Smartmeter Binding ... SUCCESS [ 34.691 s]
[INFO] openHAB Add-ons :: Bundles :: SNMP Binding ......... SUCCESS [  5.003 s]
[INFO] openHAB Add-ons :: Bundles :: SolarEdge Binding .... SUCCESS [  1.950 s]
[INFO] openHAB Add-ons :: Bundles :: Solar-Log Binding .... SUCCESS [  1.848 s]
[INFO] openHAB Add-ons :: Bundles :: SomfyTahoma Binding .. SUCCESS [  2.074 s]
[INFO] openHAB Add-ons :: Bundles :: Sonos Binding ........ SUCCESS [  2.057 s]
[INFO] openHAB Add-ons :: Bundles :: SonyAudio Binding .... SUCCESS [  1.621 s]
[INFO] openHAB Add-ons :: Bundles :: Sony Projector Binding SUCCESS [  2.094 s]
[INFO] openHAB Add-ons :: Bundles :: Spotify Binding ...... SUCCESS [  2.097 s]
[INFO] openHAB Add-ons :: Bundles :: SqueezeBox Binding ... SUCCESS [  2.044 s]
[INFO] openHAB Add-ons :: Bundles :: Synop Analyzer Binding SUCCESS [  1.915 s]
[INFO] openHAB Add-ons :: Bundles :: Systeminfo Binding ... SUCCESS [  2.366 s]
[INFO] openHAB Add-ons :: Bundles :: Tado Binding ......... SUCCESS [  2.264 s]
[INFO] openHAB Add-ons :: Bundles :: Tankerkoenig Binding . SUCCESS [  1.844 s]
[INFO] openHAB Add-ons :: Bundles :: Telegram Binding ..... SUCCESS [  2.478 s]
[INFO] openHAB Add-ons :: Bundles :: Tellstick Binding .... SUCCESS [  3.013 s]
[INFO] openHAB Add-ons :: Bundles :: Tesla Binding ........ SUCCESS [  1.962 s]
[INFO] openHAB Add-ons :: Bundles :: TP-Link Smart Home Binding SUCCESS [  4.704 s]
[INFO] openHAB Add-ons :: Bundles :: TRÅDFRI Binding ...... SUCCESS [  4.420 s]
[INFO] openHAB Add-ons :: Bundles :: UniFi Binding ........ SUCCESS [  1.931 s]
[INFO] openHAB Add-ons :: Bundles :: Somfy URTSI II binding SUCCESS [  1.975 s]
[INFO] openHAB Add-ons :: Bundles :: ValloxMV Binding ..... SUCCESS [  1.744 s]
[INFO] openHAB Add-ons :: Bundles :: Vektiva Binding ...... SUCCESS [  2.482 s]
[INFO] openHAB Add-ons :: Bundles :: Volvo On Call Binding  SUCCESS [  2.100 s]
[INFO] openHAB Add-ons :: Bundles :: Velbus Binding ....... SUCCESS [  1.831 s]
[INFO] openHAB Add-ons :: Bundles :: Velux Binding ........ SUCCESS [  2.377 s]
[INFO] openHAB Add-ons :: Bundles :: Vitotronic Binding ... SUCCESS [  1.820 s]
[INFO] openHAB Add-ons :: Bundles :: WeatherCompany Binding SUCCESS [  1.854 s]
[INFO] openHAB Add-ons :: Bundles :: WeatherUnderground Binding SUCCESS [  1.993 s]
[INFO] openHAB Add-ons :: Bundles :: Wemo Binding ......... SUCCESS [  2.249 s]
[INFO] openHAB Add-ons :: Bundles :: WiFiLED Binding ...... SUCCESS [  5.656 s]
[INFO] openHAB Add-ons :: Bundles :: Windcentrale Binding . SUCCESS [  2.576 s]
[INFO] openHAB Add-ons :: Bundles :: XMLTV Binding ........ SUCCESS [  1.855 s]
[INFO] openHAB Add-ons :: Bundles :: XMPPClient Binding ... SUCCESS [  3.970 s]
[INFO] openHAB Add-ons :: Bundles :: Yamaha Receiver Binding SUCCESS [  5.676 s]
[INFO] openHAB Add-ons :: Bundles :: Yeelight Binding ..... SUCCESS [  3.948 s]
[INFO] openHAB Add-ons :: Bundles :: Zoneminder Binding ... SUCCESS [  2.153 s]
[INFO] openHAB Add-ons :: Bundles :: ZWay Binding ......... SUCCESS [  2.228 s]
[INFO] openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace SUCCESS [  3.307 s]
[INFO] openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace (Automation) SUCCESS [  0.596 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Homekit ........ SUCCESS [  3.536 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Hue Emulation Service SUCCESS [ 10.136 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: ImperiHome Integration Service SUCCESS [  2.095 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Java Sound Support SUCCESS [  2.101 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: NEEO Integration SUCCESS [  3.065 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector SUCCESS [  1.991 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: MQTT Broker Moquette SUCCESS [ 18.959 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Web Audio Support SUCCESS [  1.883 s]
[INFO] openHAB Add-ons :: Bundles :: Persistence Service :: MapDB SUCCESS [  1.747 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Binary To JSON SUCCESS [  2.354 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Exec SUCCESS [  2.125 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: JavaScript SUCCESS [  1.825 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Jinja SUCCESS [  3.355 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath SUCCESS [  3.155 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: RegEx SUCCESS [  2.826 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Scale SUCCESS [  3.141 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: XPath SUCCESS [  3.070 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Xslt SUCCESS [  2.966 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Google Cloud Text-to-Speech SUCCESS [  2.206 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: macOS Text-to-Speech SUCCESS [  3.344 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Mary Text-to-Speech SUCCESS [  6.979 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Pico Text-to-Speech SUCCESS [  1.941 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Polly Text-to-Speech SUCCESS [  2.403 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech SUCCESS [  1.908 s]
[INFO] openHAB Add-ons :: BOM :: openHAB Add-ons .......... SUCCESS [  0.100 s]
[INFO] openHAB Add-ons :: Features :: Karaf ............... SUCCESS [  0.136 s]
[INFO] openHAB Add-ons :: Features :: Karaf :: Add-ons External SUCCESS [  0.155 s]
[INFO] openHAB Add-ons :: Features :: Karaf :: Add-ons .... SUCCESS [  4.604 s]
[INFO] openHAB Add-ons :: Integration Tests ............... SUCCESS [  0.050 s]
[INFO] openHAB Add-ons :: Integration Tests :: Astro Binding Tests SUCCESS [  5.117 s]
[INFO] openHAB Add-ons :: Integration Tests :: AVM FRITZ! Binding Tests SUCCESS [  4.651 s]
[INFO] openHAB Add-ons :: Integration Tests :: Feed Binding Tests SUCCESS [02:29 min]
[INFO] openHAB Add-ons :: Integration Tests :: hue Binding Tests SUCCESS [  4.834 s]
[INFO] openHAB Add-ons :: Integration Tests :: MaxCube Binding Tests SUCCESS [  9.069 s]
[INFO] openHAB Add-ons :: Integration Tests :: Nest Binding Tests SUCCESS [ 13.733 s]
[INFO] openHAB Add-ons :: Integration Tests :: NTP Binding Tests SUCCESS [  4.969 s]
[INFO] openHAB Add-ons :: Integration Tests :: Systeminfo Binding Tests SUCCESS [ 52.444 s]
[INFO] openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding SUCCESS [  3.744 s]
[INFO] openHAB Add-ons :: Integration Tests :: Wemo Binding Tests SUCCESS [  5.507 s]
[INFO] openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests FAILURE [ 15.566 s]
[INFO] openHAB Add-ons :: Integration Tests :: MapDB Persistence Tests SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  16:38 min
[INFO] Finished at: 2020-03-08T08:41:42Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal biz.aQute.bnd:bnd-testing-maven-plugin:4.3.0:testing (default) on project org.openhab.io.hueemulation.tests: 1 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
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :org.openhab.io.hueemulation.tests

@TravisBuddy
Copy link

Travis tests were successful

Hey @sprehn,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

@TravisBuddy
Copy link

Travis tests have failed

Hey @sprehn,
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.

1st Build

Expand here
Build all
  1/246| openHAB Add-ons 2.5.3-SNAPSHOT
  2/246| openHAB Add-ons :: BOM 2.5.3-SNAPSHOT
  3/246| openHAB Add-ons :: BOM :: Runtime Index 2.5.3-SNAPSHOT
  4/246| openHAB Add-ons :: BOM :: Test Index 2.5.3-SNAPSHOT
  5/246| openHAB Add-ons :: BOM :: openHAB Core Index 2.5.3-SNAPSHOT
  6/246| openHAB Add-ons :: Bundles 2.5.3-SNAPSHOT
  7/246| openHAB Add-ons :: Bundles :: Airquality Binding 2.5.3-SNAPSHOT
  8/246| openHAB Add-ons :: Bundles :: AirVisual Node Air Quality Monitor Binding 2.5.3-SNAPSHOT
  9/246| openHAB Add-ons :: Bundles :: AllPlay Binding 2.5.3-SNAPSHOT
 10/246| openHAB Add-ons :: Bundles :: Amazon Dash Button Binding 2.5.3-SNAPSHOT
 11/246| openHAB Add-ons :: Bundles :: Amazon Echo Control Binding 2.5.3-SNAPSHOT
 12/246| openHAB Add-ons :: Bundles :: Ambient Weather Binding 2.5.3-SNAPSHOT
 13/246| openHAB Add-ons :: Bundles :: Astro Binding 2.5.3-SNAPSHOT
 14/246| openHAB Add-ons :: Bundles :: Atlona Binding 2.5.3-SNAPSHOT
 15/246| openHAB Add-ons :: Bundles :: Autelis Binding 2.5.3-SNAPSHOT
 16/246| openHAB Add-ons :: Bundles :: AVM FRITZ! Binding 2.5.3-SNAPSHOT
 17/246| openHAB Add-ons :: Bundles :: BigAssFan Binding 2.5.3-SNAPSHOT
 18/246| openHAB Add-ons :: Bundles :: Bluetooth Binding 2.5.3-SNAPSHOT
 19/246| openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter 2.5.3-SNAPSHOT
 20/246| openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter 2.5.3-SNAPSHOT
 21/246| openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter 2.5.3-SNAPSHOT
 22/246| openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter 2.5.3-SNAPSHOT
 23/246| openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter 2.5.3-SNAPSHOT
 24/246| openHAB Add-ons :: Bundles :: Bosch Indego Binding 2.5.3-SNAPSHOT
 25/246| openHAB Add-ons :: Bundles :: BoseSoundTouch Binding 2.5.3-SNAPSHOT
 26/246| openHAB Add-ons :: Bundles :: Buienradar Binding 2.5.3-SNAPSHOT
 27/246| openHAB Add-ons :: Bundles :: Chromecast Binding 2.5.3-SNAPSHOT
 28/246| openHAB Add-ons :: Bundles :: CM11A Binding 2.5.3-SNAPSHOT
 29/246| openHAB Add-ons :: Bundles :: CoolMasterNet Binding 2.5.3-SNAPSHOT
 30/246| openHAB Add-ons :: Bundles :: Daikin Binding 2.5.3-SNAPSHOT
 31/246| openHAB Add-ons :: Bundles :: Dark Sky Binding 2.5.3-SNAPSHOT
 32/246| openHAB Add-ons :: Bundles :: Dresden Elektronik deCONZ Binding 2.5.3-SNAPSHOT
 33/246| openHAB Add-ons :: Bundles :: Denon / Marantz Binding 2.5.3-SNAPSHOT
 34/246| openHAB Add-ons :: Bundles :: Digiplex/EVO Binding 2.5.3-SNAPSHOT
 35/246| openHAB Add-ons :: Bundles :: DigitalSTROM Binding 2.5.3-SNAPSHOT
 36/246| openHAB Add-ons :: Bundles :: D-Link Smart Home Binding 2.5.3-SNAPSHOT
 37/246| openHAB Add-ons :: Bundles :: DMX Binding 2.5.3-SNAPSHOT
 38/246| openHAB Add-ons :: Bundles :: Doorbird Binding 2.5.3-SNAPSHOT
 39/246| openHAB Add-ons :: Bundles :: DSCAlarm Binding 2.5.3-SNAPSHOT
 40/246| openHAB Add-ons :: Bundles :: DSMR Binding 2.5.3-SNAPSHOT
 41/246| openHAB Add-ons :: Bundles :: DwdUnwetter Binding 2.5.3-SNAPSHOT
 42/246| openHAB Add-ons :: Bundles :: EleroTransmitterStick Binding 2.5.3-SNAPSHOT
 43/246| openHAB Add-ons :: Bundles :: EnOcean Binding 2.5.3-SNAPSHOT
 44/246| openHAB Add-ons :: Bundles :: EnturNo Binding 2.5.3-SNAPSHOT
 45/246| openHAB Add-ons :: Bundles :: evohome Binding 2.5.3-SNAPSHOT
 46/246| openHAB Add-ons :: Bundles :: Exec Binding 2.5.3-SNAPSHOT
 47/246| openHAB Add-ons :: Bundles :: Feed Binding 2.5.3-SNAPSHOT
​ 48/246| openHAB Add-ons :: Bundles :: Feican Binding 2.5.3-SNAPSHOT
 49/246| openHAB Add-ons :: Bundles :: Folding Binding 2.5.3-SNAPSHOT
 50/246| openHAB Add-ons :: Bundles :: Foobot Binding 2.5.3-SNAPSHOT
 51/246| openHAB Add-ons :: Bundles :: Freebox Binding 2.5.3-SNAPSHOT
 52/246| openHAB Add-ons :: Bundles :: Fronius Binding 2.5.3-SNAPSHOT
 53/246| openHAB Add-ons :: Bundles :: FSInternetRadio Binding 2.5.3-SNAPSHOT
 54/246| openHAB Add-ons :: Bundles :: FTP Upload Binding 2.5.3-SNAPSHOT
 55/246| openHAB Add-ons :: Bundles :: Gardena Binding 2.5.3-SNAPSHOT
 56/246| openHAB Add-ons :: Bundles :: Transformation Service :: Map 2.5.3-SNAPSHOT
 57/246| openHAB Add-ons :: Bundles :: GlobalCache Binding 2.5.3-SNAPSHOT
 58/246| openHAB Add-ons :: Bundles :: GPSTracker Binding 2.5.3-SNAPSHOT
 59/246| openHAB Add-ons :: Bundles :: GROHE ONDUS Binding 2.5.3-SNAPSHOT
 60/246| openHAB Add-ons :: Bundles :: HarmonyHub Binding 2.5.3-SNAPSHOT
 61/246| openHAB Add-ons :: Bundles :: HDanywhere Binding 2.5.3-SNAPSHOT
 62/246| openHAB Add-ons :: Bundles :: Hunter Douglas PowerView Binding 2.5.3-SNAPSHOT
 63/246| openHAB Add-ons :: Bundles :: Helios Binding 2.5.3-SNAPSHOT
 64/246| openHAB Add-ons :: Bundles :: Heos Binding 2.5.3-SNAPSHOT
 65/246| openHAB Add-ons :: Bundles :: Homematic Binding 2.5.3-SNAPSHOT
 66/246| openHAB Add-ons :: Bundles :: HP Printer Binding 2.5.3-SNAPSHOT
 67/246| openHAB Add-ons :: Bundles :: hue Binding 2.5.3-SNAPSHOT
 68/246| openHAB Add-ons :: Bundles :: Hydrawise Binding 2.5.3-SNAPSHOT
 69/246| openHAB Add-ons :: Bundles :: Hyperion Binding 2.5.3-SNAPSHOT
 70/246| openHAB Add-ons :: Bundles :: iAquaLink Binding 2.5.3-SNAPSHOT
 71/246| openHAB Add-ons :: Bundles :: iCloud Binding 2.5.3-SNAPSHOT
 72/246| openHAB Add-ons :: Bundles :: IHC Binding 2.5.3-SNAPSHOT
 73/246| openHAB Add-ons :: Bundles :: innogy Smarthome Binding 2.5.3-SNAPSHOT
 74/246| openHAB Add-ons :: Bundles :: IPP Binding 2.5.3-SNAPSHOT
 75/246| openHAB Add-ons :: Bundles :: IRtrans Binding 2.5.3-SNAPSHOT
 76/246| openHAB Add-ons :: Bundles :: JeeLink Binding 2.5.3-SNAPSHOT
 77/246| openHAB Add-ons :: Bundles :: Keba Binding 2.5.3-SNAPSHOT
 78/246| openHAB Add-ons :: Bundles :: KM200 Binding 2.5.3-SNAPSHOT
 79/246| openHAB Add-ons :: Bundles :: KNX Binding 2.5.3-SNAPSHOT
 80/246| openHAB Add-ons :: Bundles :: Kodi Binding 2.5.3-SNAPSHOT
 81/246| openHAB Add-ons :: Bundles :: Konnected Binding 2.5.3-SNAPSHOT
 82/246| openHAB Add-ons :: Bundles :: Kostal Binding 2.5.3-SNAPSHOT
 83/246| openHAB Add-ons :: Bundles :: LaMetric Time Binding 2.5.3-SNAPSHOT
 84/246| openHAB Add-ons :: Bundles :: Leap Motion Binding 2.5.3-SNAPSHOT
 85/246| openHAB Add-ons :: Bundles :: LG HomBot Binding 2.5.3-SNAPSHOT
 86/246| openHAB Add-ons :: Bundles :: LG TV Serial Binding 2.5.3-SNAPSHOT
 87/246| openHAB Add-ons :: Bundles :: LG webOS Binding 2.5.3-SNAPSHOT
 88/246| openHAB Add-ons :: Bundles :: LIFX Binding 2.5.3-SNAPSHOT
 89/246| openHAB Add-ons :: Bundles :: LIRC Binding 2.5.3-SNAPSHOT
 90/246| openHAB Add-ons :: Bundles :: LinuxInput Binding 2.5.3-SNAPSHOT
 91/246| openHAB Add-ons :: Bundles :: Log Reader Binding 2.5.3-SNAPSHOT
 92/246| openHAB Add-ons :: Bundles :: Loxone Binding 2.5.3-SNAPSHOT
 93/246| openHAB Add-ons :: Bundles :: Lutron Binding 2.5.3-SNAPSHOT
 94/246| openHAB Add-ons :: Bundles :: Mail Binding 2.5.3-SNAPSHOT
 95/246| openHAB Add-ons :: Bundles :: MaxCube Binding 2.5.3-SNAPSHOT
 96/246| openHAB Add-ons :: Bundles :: mcp23017 Binding 2.5.3-SNAPSHOT
 97/246| openHAB Add-ons :: Bundles :: MELCloud Binding 2.5.3-SNAPSHOT
 98/246| openHAB Add-ons :: Bundles :: meteoblue Binding 2.5.3-SNAPSHOT
 99/246| openHAB Add-ons :: Bundles :: meteostick Binding 2.5.3-SNAPSHOT
100/246| openHAB Add-ons :: Bundles :: Miele Binding 2.5.3-SNAPSHOT
101/246| openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Home Binding 2.5.3-SNAPSHOT
102/246| openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding 2.5.3-SNAPSHOT
103/246| openHAB Add-ons :: Bundles :: Millheat Binding 2.5.3-SNAPSHOT
104/246| openHAB Add-ons :: Bundles :: Milight Binding 2.5.3-SNAPSHOT
105/246| openHAB Add-ons :: Bundles :: Minecraft Binding 2.5.3-SNAPSHOT
106/246| openHAB Add-ons :: Bundles :: IO :: Modbus Transport 2.5.3-SNAPSHOT
107/246| openHAB Add-ons :: Bundles :: Modbus Binding 2.5.3-SNAPSHOT
108/246| openHAB Add-ons :: Bundles :: MQTT Broker Binding 2.5.3-SNAPSHOT
109/246| openHAB Add-ons :: Bundles :: MQTT Things and Channels 2.5.3-SNAPSHOT
110/246| openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention 2.5.3-SNAPSHOT
111/246| openHAB Add-ons :: Bundles :: MQTT Homie Convention 2.5.3-SNAPSHOT
112/246| openHAB Add-ons :: Bundles :: Nanoleaf Binding 2.5.3-SNAPSHOT
113/246| openHAB Add-ons :: Bundles :: Neato Binding 2.5.3-SNAPSHOT
114/246| openHAB Add-ons :: Bundles :: Neeo Binding 2.5.3-SNAPSHOT
​115/246| openHAB Add-ons :: Bundles :: NeoHub Binding 2.5.3-SNAPSHOT
116/246| openHAB Add-ons :: Bundles :: Nest Binding 2.5.3-SNAPSHOT
117/246| openHAB Add-ons :: Bundles :: Netatmo Binding 2.5.3-SNAPSHOT
118/246| openHAB Add-ons :: Bundles :: Network Binding 2.5.3-SNAPSHOT
119/246| openHAB Add-ons :: Bundles :: Network UPS Tools Binding 2.5.3-SNAPSHOT
120/246| openHAB Add-ons :: Bundles :: Nibe Heatpump Binding 2.5.3-SNAPSHOT
121/246| openHAB Add-ons :: Bundles :: NibeUplink Binding 2.5.3-SNAPSHOT
122/246| openHAB Add-ons :: Bundles :: Nikobus Binding 2.5.3-SNAPSHOT
123/246| openHAB Add-ons :: Bundles :: Niko Home Control Binding 2.5.3-SNAPSHOT
124/246| openHAB Add-ons :: Bundles :: NTP Binding 2.5.3-SNAPSHOT
125/246| openHAB Add-ons :: Bundles :: Nuki Binding 2.5.3-SNAPSHOT
126/246| openHAB Add-ons :: Bundles :: Oceanic Binding 2.5.3-SNAPSHOT
127/246| openHAB Add-ons :: Bundles :: OmnikInverter Binding 2.5.3-SNAPSHOT
128/246| openHAB Add-ons :: Bundles :: OneBusAway Binding 2.5.3-SNAPSHOT
129/246| openHAB Add-ons :: Bundles :: OneWireGPIO Binding 2.5.3-SNAPSHOT
130/246| openHAB Add-ons :: Bundles :: OneWire Binding 2.5.3-SNAPSHOT
131/246| openHAB Add-ons :: Bundles :: Onkyo Binding 2.5.3-SNAPSHOT
132/246| openHAB Add-ons :: Bundles :: OpenGarage Binding 2.5.3-SNAPSHOT
133/246| openHAB Add-ons :: Bundles :: OpenSprinkler Binding 2.5.3-SNAPSHOT
134/246| openHAB Add-ons :: Bundles :: OpenUV Binding 2.5.3-SNAPSHOT
135/246| openHAB Add-ons :: Bundles :: OpenWeatherMap Binding 2.5.3-SNAPSHOT
136/246| openHAB Add-ons :: Bundles :: Orvibo Binding 2.5.3-SNAPSHOT
137/246| openHAB Add-ons :: Bundles :: ParadoxAlarm Binding 2.5.3-SNAPSHOT
138/246| openHAB Add-ons :: Bundles :: Pentair Binding 2.5.3-SNAPSHOT
139/246| openHAB Add-ons :: Bundles :: PHC Binding 2.5.3-SNAPSHOT
140/246| openHAB Add-ons :: Bundles :: PioneerAvr Binding 2.5.3-SNAPSHOT
141/246| openHAB Add-ons :: Bundles :: pixometer Binding 2.5.3-SNAPSHOT
142/246| openHAB Add-ons :: Bundles :: PJLink Binding 2.5.3-SNAPSHOT
143/246| openHAB Add-ons :: Bundles :: PLCLogo Binding 2.5.3-SNAPSHOT
144/246| openHAB Add-ons :: Bundles :: Plugwise Binding 2.5.3-SNAPSHOT
145/246| openHAB Add-ons :: Bundles :: Powermax Binding 2.5.3-SNAPSHOT
146/246| openHAB Add-ons :: Bundles :: Pulseaudio Binding 2.5.3-SNAPSHOT
147/246| openHAB Add-ons :: Bundles :: Pushbullet Binding 2.5.3-SNAPSHOT
148/246| openHAB Add-ons :: Bundles :: RegoHeatPump Binding 2.5.3-SNAPSHOT
149/246| openHAB Add-ons :: Bundles :: Rfxcom Binding 2.5.3-SNAPSHOT
150/246| openHAB Add-ons :: Bundles :: RME Binding 2.5.3-SNAPSHOT
151/246| openHAB Add-ons :: Bundles :: Robonect Binding 2.5.3-SNAPSHOT
152/246| openHAB Add-ons :: Bundles :: Rotel Binding 2.5.3-SNAPSHOT
153/246| openHAB Add-ons :: Bundles :: RotelRa1x Binding 2.5.3-SNAPSHOT
154/246| openHAB Add-ons :: Bundles :: Russound Binding 2.5.3-SNAPSHOT
155/246| openHAB Add-ons :: Bundles :: SamsungTV Binding 2.5.3-SNAPSHOT
156/246| openHAB Add-ons :: Bundles :: Satel Binding 2.5.3-SNAPSHOT
157/246| openHAB Add-ons :: Bundles :: Seneye Binding 2.5.3-SNAPSHOT
158/246| openHAB Add-ons :: Bundles :: senseBox Binding 2.5.3-SNAPSHOT
159/246| openHAB Add-ons :: Bundles :: SerialButton Binding 2.5.3-SNAPSHOT
160/246| openHAB Add-ons :: Bundles :: Shelly Binding 2.5.3-SNAPSHOT
161/246| openHAB Add-ons :: Bundles :: Siemens RDS Binding 2.5.3-SNAPSHOT
162/246| openHAB Add-ons :: Bundles :: Sinope Binding 2.5.3-SNAPSHOT
163/246| openHAB Add-ons :: Bundles :: Silvercrest Wifi Socket Binding 2.5.3-SNAPSHOT
164/246| openHAB Add-ons :: Bundles :: SleepIQ Binding 2.5.3-SNAPSHOT
165/246| openHAB Add-ons :: Bundles :: SMA EnergyMeter Binding 2.5.3-SNAPSHOT
166/246| openHAB Add-ons :: Bundles :: Smartmeter Binding 2.5.3-SNAPSHOT
167/246| openHAB Add-ons :: Bundles :: SNMP Binding 2.5.3-SNAPSHOT
168/246| openHAB Add-ons :: Bundles :: SolarEdge Binding 2.5.3-SNAPSHOT
169/246| openHAB Add-ons :: Bundles :: Solar-Log Binding 2.5.3-SNAPSHOT
170/246| openHAB Add-ons :: Bundles :: SomfyTahoma Binding 2.5.3-SNAPSHOT
171/246| openHAB Add-ons :: Bundles :: Sonos Binding 2.5.3-SNAPSHOT
172/246| openHAB Add-ons :: Bundles :: SonyAudio Binding 2.5.3-SNAPSHOT
173/246| openHAB Add-ons :: Bundles :: Sony Projector Binding 2.5.3-SNAPSHOT
174/246| openHAB Add-ons :: Bundles :: Spotify Binding 2.5.3-SNAPSHOT
175/246| openHAB Add-ons :: Bundles :: SqueezeBox Binding 2.5.3-SNAPSHOT
176/246| openHAB Add-ons :: Bundles :: Synop Analyzer Binding 2.5.3-SNAPSHOT
177/246| openHAB Add-ons :: Bundles :: Systeminfo Binding 2.5.3-SNAPSHOT
178/246| openHAB Add-ons :: Bundles :: Tado Binding 2.5.3-SNAPSHOT
179/246| openHAB Add-ons :: Bundles :: Tankerkoenig Binding 2.5.3-SNAPSHOT
180/246| openHAB Add-ons :: Bundles :: Telegram Binding 2.5.3-SNAPSHOT
181/246| openHAB Add-ons :: Bundles :: Tellstick Binding 2.5.3-SNAPSHOT
182/246| openHAB Add-ons :: Bundles :: Tesla Binding 2.5.3-SNAPSHOT
183/246| openHAB Add-ons :: Bundles :: TP-Link Smart Home Binding 2.5.3-SNAPSHOT
​184/246| openHAB Add-ons :: Bundles :: TRÅDFRI Binding 2.5.3-SNAPSHOT
185/246| openHAB Add-ons :: Bundles :: UniFi Binding 2.5.3-SNAPSHOT
186/246| openHAB Add-ons :: Bundles :: Somfy URTSI II binding 2.5.3-SNAPSHOT
187/246| openHAB Add-ons :: Bundles :: ValloxMV Binding 2.5.3-SNAPSHOT
188/246| openHAB Add-ons :: Bundles :: Vektiva Binding 2.5.3-SNAPSHOT
189/246| openHAB Add-ons :: Bundles :: Volvo On Call Binding 2.5.3-SNAPSHOT
190/246| openHAB Add-ons :: Bundles :: Velbus Binding 2.5.3-SNAPSHOT
191/246| openHAB Add-ons :: Bundles :: Velux Binding 2.5.3-SNAPSHOT
192/246| openHAB Add-ons :: Bundles :: Vitotronic Binding 2.5.3-SNAPSHOT
193/246| openHAB Add-ons :: Bundles :: WeatherCompany Binding 2.5.3-SNAPSHOT
194/246| openHAB Add-ons :: Bundles :: WeatherUnderground Binding 2.5.3-SNAPSHOT
195/246| openHAB Add-ons :: Bundles :: Wemo Binding 2.5.3-SNAPSHOT
196/246| openHAB Add-ons :: Bundles :: WiFiLED Binding 2.5.3-SNAPSHOT
197/246| openHAB Add-ons :: Bundles :: Windcentrale Binding 2.5.3-SNAPSHOT
198/246| openHAB Add-ons :: Bundles :: XMLTV Binding 2.5.3-SNAPSHOT
199/246| openHAB Add-ons :: Bundles :: XMPPClient Binding 2.5.3-SNAPSHOT
200/246| openHAB Add-ons :: Bundles :: Yamaha Receiver Binding 2.5.3-SNAPSHOT
201/246| openHAB Add-ons :: Bundles :: Yeelight Binding 2.5.3-SNAPSHOT
202/246| openHAB Add-ons :: Bundles :: Zoneminder Binding 2.5.3-SNAPSHOT
203/246| openHAB Add-ons :: Bundles :: ZWay Binding 2.5.3-SNAPSHOT
204/246| openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace 2.5.3-SNAPSHOT
205/246| openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace (Automation) 2.5.3-SNAPSHOT
206/246| openHAB Add-ons :: Bundles :: IO :: Homekit 2.5.3-SNAPSHOT
207/246| openHAB Add-ons :: Bundles :: IO :: Hue Emulation Service 2.5.3-SNAPSHOT
208/246| openHAB Add-ons :: Bundles :: IO :: ImperiHome Integration Service 2.5.3-SNAPSHOT
209/246| openHAB Add-ons :: Bundles :: IO :: Java Sound Support 2.5.3-SNAPSHOT
210/246| openHAB Add-ons :: Bundles :: IO :: NEEO Integration 2.5.3-SNAPSHOT
211/246| openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector 2.5.3-SNAPSHOT
212/246| openHAB Add-ons :: Bundles :: IO :: MQTT Broker Moquette 2.5.3-SNAPSHOT
213/246| openHAB Add-ons :: Bundles :: IO :: Web Audio Support 2.5.3-SNAPSHOT
214/246| openHAB Add-ons :: Bundles :: Persistence Service :: MapDB 2.5.3-SNAPSHOT
215/246| openHAB Add-ons :: Bundles :: Transformation Service :: Binary To JSON 2.5.3-SNAPSHOT
216/246| openHAB Add-ons :: Bundles :: Transformation Service :: Exec 2.5.3-SNAPSHOT
217/246| openHAB Add-ons :: Bundles :: Transformation Service :: JavaScript 2.5.3-SNAPSHOT
218/246| openHAB Add-ons :: Bundles :: Transformation Service :: Jinja 2.5.3-SNAPSHOT
219/246| openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath 2.5.3-SNAPSHOT
220/246| openHAB Add-ons :: Bundles :: Transformation Service :: RegEx 2.5.3-SNAPSHOT
221/246| openHAB Add-ons :: Bundles :: Transformation Service :: Scale 2.5.3-SNAPSHOT
222/246| openHAB Add-ons :: Bundles :: Transformation Service :: XPath 2.5.3-SNAPSHOT
223/246| openHAB Add-ons :: Bundles :: Transformation Service :: Xslt 2.5.3-SNAPSHOT
224/246| openHAB Add-ons :: Bundles :: Voice :: Google Cloud Text-to-Speech 2.5.3-SNAPSHOT
225/246| openHAB Add-ons :: Bundles :: Voice :: macOS Text-to-Speech 2.5.3-SNAPSHOT
226/246| openHAB Add-ons :: Bundles :: Voice :: Mary Text-to-Speech 2.5.3-SNAPSHOT
227/246| openHAB Add-ons :: Bundles :: Voice :: Pico Text-to-Speech 2.5.3-SNAPSHOT
228/246| openHAB Add-ons :: Bundles :: Voice :: Polly Text-to-Speech 2.5.3-SNAPSHOT
229/246| openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech 2.5.3-SNAPSHOT
230/246| openHAB Add-ons :: BOM :: openHAB Add-ons 2.5.3-SNAPSHOT
231/246| openHAB Add-ons :: Features :: Karaf 2.5.3-SNAPSHOT
232/246| openHAB Add-ons :: Features :: Karaf :: Add-ons External 2.5.3-SNAPSHOT
233/246| openHAB Add-ons :: Features :: Karaf :: Add-ons 2.5.3-SNAPSHOT
234/246| openHAB Add-ons :: Integration Tests 2.5.3-SNAPSHOT
235/246| openHAB Add-ons :: Integration Tests :: Astro Binding Tests 2.5.3-SNAPSHOT
236/246| openHAB Add-ons :: Integration Tests :: AVM FRITZ! Binding Tests 2.5.3-SNAPSHOT
237/246| openHAB Add-ons :: Integration Tests :: Feed Binding Tests 2.5.3-SNAPSHOT
​238/246| openHAB Add-ons :: Integration Tests :: hue Binding Tests 2.5.3-SNAPSHOT
239/246| openHAB Add-ons :: Integration Tests :: MaxCube Binding Tests 2.5.3-SNAPSHOT
240/246| openHAB Add-ons :: Integration Tests :: Nest Binding Tests 2.5.3-SNAPSHOT
241/246| openHAB Add-ons :: Integration Tests :: NTP Binding Tests 2.5.3-SNAPSHOT
242/246| openHAB Add-ons :: Integration Tests :: Systeminfo Binding Tests 2.5.3-SNAPSHOT
​243/246| openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding 2.5.3-SNAPSHOT
244/246| openHAB Add-ons :: Integration Tests :: Wemo Binding Tests 2.5.3-SNAPSHOT
245/246| openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests 2.5.3-SNAPSHOT
08:52:00.932 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_memory_available -> systeminfo:computer:work:memory#available to ManagedItemChannelLinkProvider.
08:52:00.932 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
08:52:00.932 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
08:52:00.932 [OH-thingLinkManager-2] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:memory#available!
08:52:00.934 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:memory#available to ManagedItemChannelLinkProvider.
08:52:01.934 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
08:52:01.934 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@26cb5207'.
08:52:01.935 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.936 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.936 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.936 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.936 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.937 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
08:52:01.937 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
08:52:01.937 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@6293e39e'.
08:52:01.938 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:01.939 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:01.939 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:01.939 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:01.939 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:01.940 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_memory_available -> systeminfo:computer:work:memory#available from ManagedItemChannelLinkProvider.
08:52:01.940 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
08:52:01.940 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
08:52:01.940 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
08:52:01.940 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
08:52:01.941 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
08:52:01.941 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:52:01.941 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:52:01.941 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
08:52:01.946 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
08:52:01.946 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
08:52:01.947 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
08:52:01.947 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.ManagedThingProvider" has been added.
08:52:01.948 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.link.ManagedItemChannelLinkProvider" has been added.
08:52:01.948 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.internal.ChannelItemProvider" has been added.
08:52:01.949 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' added
08:52:01.950 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl" has been added.
08:52:01.950 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.items.ManagedItemProvider" has been added.
08:52:01.953 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is tracked by ThingManager.
08:52:01.953 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling 'SysteminfoHandlerFactory.registerHandler()' for thing 'systeminfo:computer:work'.
08:52:01.953 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work' needs [], has [interval_high, interval_medium].
08:52:01.953 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work:drive#name' needs [], has [priority, pid].
08:52:01.953 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling initialize handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@a451491'.
08:52:01.953 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.955 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.956 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.956 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.956 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:01.956 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start initializing!
08:52:01.956 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Systeminfo implementation is instantiated!
08:52:01.956 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start reading Thing configuration.
08:52:01.956 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for medium priority channels set to 3 s
08:52:01.956 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for high priority channels set to 1 s
08:52:01.957 [safeCall-1] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Updated element systeminfo:computer:work in ManagedThingProvider.
08:52:01.957 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Properties updated!
08:52:01.957 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule high priority tasks at fixed rate 1 s.
08:52:01.957 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule medium priority tasks at fixed rate 3 s.
08:52:01.957 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule one time update for low priority tasks.
08:52:01.957 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Thing is successfully initialized!
08:52:01.964 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_drive_name -> systeminfo:computer:work:drive#name to ManagedItemChannelLinkProvider.
08:52:01.964 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
08:52:01.964 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
08:52:01.965 [OH-thingLinkManager-4] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:drive#name!
08:52:01.966 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:drive#name to ManagedItemChannelLinkProvider.
08:52:02.967 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
08:52:02.967 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@a451491'.
08:52:02.967 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:02.969 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:02.969 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:02.969 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:02.969 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:02.970 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
08:52:02.970 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
08:52:02.970 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@6293e39e'.
08:52:02.971 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:02.975 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:02.975 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:02.975 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:02.975 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:02.976 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_drive_name -> systeminfo:computer:work:drive#name from ManagedItemChannelLinkProvider.
08:52:02.976 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
08:52:02.976 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
08:52:02.976 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
08:52:02.976 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
08:52:02.980 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
08:52:02.981 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:52:02.981 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:52:02.981 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
08:52:02.989 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
08:52:02.989 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
08:52:02.990 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
08:52:02.990 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.ManagedThingProvider" has been added.
08:52:02.991 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.link.ManagedItemChannelLinkProvider" has been added.
08:52:02.991 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.thing.internal.ChannelItemProvider" has been added.
08:52:02.992 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' added
08:52:02.993 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl" has been added.
08:52:02.993 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "org.eclipse.smarthome.core.items.ManagedItemProvider" has been added.
08:52:02.998 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is tracked by ThingManager.
08:52:02.998 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling 'SysteminfoHandlerFactory.registerHandler()' for thing 'systeminfo:computer:work'.
08:52:02.998 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work' needs [], has [interval_high, interval_medium].
08:52:02.998 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Configuration of 'systeminfo:computer:work:storage#available' needs [], has [priority, pid].
08:52:02.998 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling initialize handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@2e66bc32'.
08:52:02.999 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:03.000 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:03.000 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:03.000 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:03.001 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start initializing!
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Systeminfo implementation is instantiated!
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Start reading Thing configuration.
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for medium priority channels set to 3 s
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh time for high priority channels set to 1 s
08:52:03.001 [safeCall-1] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Updated element systeminfo:computer:work in ManagedThingProvider.
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Properties updated!
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule high priority tasks at fixed rate 1 s.
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule medium priority tasks at fixed rate 3 s.
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Schedule one time update for low priority tasks.
08:52:03.001 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Thing is successfully initialized!
08:52:03.002 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo_computer_work_storage_available -> systeminfo:computer:work:storage#available to ManagedItemChannelLinkProvider.
08:52:03.002 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element systeminfo:computer:work to ManagedThingProvider.
08:52:03.002 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test to ManagedItemProvider.
08:52:03.007 [OH-thingLinkManager-5] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Refresh command received for channel systeminfo:computer:work:storage#available!
08:52:03.008 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Added new element test -> systeminfo:computer:work:storage#available to ManagedItemChannelLinkProvider.
08:52:04.008 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing 'systeminfo:computer:work' is no longer tracked by ThingManager.
08:52:04.008 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling dispose handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler@2e66bc32'.
08:52:04.009 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandler" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:04.011 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ChannelUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:04.011 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:04.011 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingStatusInfo" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:04.011 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerCallback" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandler]"
08:52:04.011 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - High prioriy tasks will not be run anymore !
08:52:04.012 [safeCall-1] DEBUG org.openhab.binding.systeminfo.internal.handler.SysteminfoHandler - Medium prioriy tasks will not be run anymore !
08:52:04.012 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Calling unregisterHandler handler for thing 'systeminfo:computer:work' at 'org.openhab.binding.systeminfo.internal.SysteminfoHandlerFactory@6293e39e'.
08:52:04.014 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:04.015 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingTypeUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:04.022 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.Thing" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:04.022 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.config.core.Configuration" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:04.022 [main] DEBUG org.eclipse.smarthome.core.internal.common.CombinedClassLoader - Loaded class "org.eclipse.smarthome.core.thing.ThingUID" by classloader "org.eclipse.osgi.internal.loader.EquinoxClassLoader@79c97cb[org.openhab.core.thing:2.5.0(id=13)]" for "[interface org.eclipse.smarthome.core.thing.binding.ThingHandlerFactory]"
08:52:04.030 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo_computer_work_storage_available -> systeminfo:computer:work:storage#available from ManagedItemChannelLinkProvider.
08:52:04.030 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element systeminfo:computer:work from ManagedThingProvider.
08:52:04.030 [main] DEBUG org.eclipse.smarthome.core.internal.items.ItemRegistryImpl - Item test was removed, trying to clean up corresponding metadata
08:52:04.030 [main] DEBUG org.eclipse.smarthome.core.internal.items.ManagedMetadataProviderImpl - Removing all metadata for item test
08:52:04.030 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractManagedProvider - Removed element test from ManagedItemProvider.
08:52:04.031 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedThingProvider" has been removed.
08:52:04.031 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:52:04.031 [main] DEBUG org.eclipse.smarthome.core.thing.internal.ThingManagerImpl - Thing handler factory 'SysteminfoHandlerFactory' removed
08:52:04.031 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ChannelItemProvider" has been removed.
08:52:04.032 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemChannelLinkProvider" has been removed.
08:52:04.032 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedMetadataProviderImpl" has been removed.
08:52:04.032 [main] DEBUG org.eclipse.smarthome.core.common.registry.AbstractRegistry - Provider "ManagedItemProvider" has been removed.
Tests run  : 53
Passed     : 53
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.systeminfo.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.systeminfo.tests/target/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.systeminfo.tests/2.5.3-SNAPSHOT/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.systeminfo.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.systeminfo.tests/2.5.3-SNAPSHOT/org.openhab.binding.systeminfo.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ----< org.openhab.addons.itests:org.openhab.binding.tradfri.tests >-----
[INFO] Building openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding 2.5.3-SNAPSHOT [243/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.binding.tradfri.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.binding.tradfri.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.binding.tradfri.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.binding.tradfri.tests ---
[INFO] Changes detected - recompiling the module!
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.binding.tradfri.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.binding.tradfri.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.binding.tradfri.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.binding.tradfri.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.binding.tradfri.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.binding.tradfri.tests ---
[INFO] Matching glob *
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for javax.measure.unit-api_1.0.0 [1] []
required wires for org.apache.commons.io_2.2.0 [2] []
required wires for org.apache.commons.lang_2.6.0 [3] []
required wires for org.apache.felix.configadmin_1.9.8 [4] []
required wires for org.apache.felix.scr_2.1.10 [5] []
required wires for org.osgi.service.event_1.4.0.201802012106 [6] []
required wires for org.openhab.core_2.5.0 [7] []
required wires for org.openhab.core.config.core_2.5.0 [8] []
required wires for ch.qos.logback.core_1.2.3 [9] []
required wires for org.openhab.core.config.discovery_2.5.0 [10] []
required wires for org.openhab.core.io.console_2.5.0 [11] []
required wires for org.openhab.core.thing_2.5.0 [12] []
required wires for slf4j.api_1.7.25 [13] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [14] []
required wires for com.google.gson_2.8.2.v20180104-1110 [15] []
required wires for javax.jmdns_3.5.5 [16] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [17] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [18] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [19] []
required wires for org.openhab.core.config.discovery.mdns_2.5.0 [20] []
required wires for org.openhab.core.io.transport.mdns_2.5.0 [21] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [22] []
required wires for org.objenesis_2.6.0 [23] []
required wires for org.openhab.core.test_2.5.0 [24] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [25] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [26] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [27] []
required wires for org.openhab.core.binding.xml_2.5.0 [28] []
required wires for org.openhab.core.config.xml_2.5.0 [29] []
required wires for org.openhab.core.thing.xml_2.5.0 [30] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [31] []
required wires for tec.uom.se_1.0.10 [32] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [33] []
required wires for net.bytebuddy.byte-buddy_1.9.10 [34] []
required wires for net.bytebuddy.byte-buddy-agent_1.9.10 [35] []
required wires for org.mockito.mockito-core_3.1.0 [36] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [37] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [38] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [39] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [40] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [41] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [42] []
required wires for org.eclipse.californium.core_2.0.0 [43] []
required wires for org.eclipse.californium.element-connector_2.0.0 [44] []
required wires for org.eclipse.californium.scandium_2.0.0 [45] []
required wires for org.openhab.binding.tradfri_2.5.3.202003080845 [46] []
required wires for org.openhab.binding.tradfri.tests_2.5.3.202003080852 [47] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.tradfri)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080845"; osgi.wiring.host="org.openhab.binding.tradfri"]
required wires for slf4j.simple_1.7.21 [48] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for biz.aQute.tester_4.3.0.201909301554 [49] []
required wires for org.openhab.binding.tradfri.tests_2.5.3.202003080852 [47] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.tradfri)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080845"; osgi.wiring.host="org.openhab.binding.tradfri"]
[safeCall-2] INFO org.eclipse.californium.scandium.dtls.InMemoryConnectionStore - Created new InMemoryConnectionStore [capacity: 100, connection expiration threshold: 60s]
[safeCall-2] INFO org.eclipse.californium.core.network.config.NetworkConfig - writing properties to file /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/test/tmp/testing/itest/Californium.properties
[safeCall-2] INFO org.eclipse.californium.core.network.RandomTokenGenerator - using tokens of 8 bytes in length
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps CoapEndpoint uses strict context
[safeCall-2] INFO org.eclipse.californium.core.network.stack.BlockwiseLayer - BlockwiseLayer uses MAX_MESSAGE_SIZE=1024, PREFERRED_BLOCK_SIZE=512, BLOCKWISE_STATUS_LIFETIME=300000, MAX_RESOURCE_BODY_SIZE=8192, BLOCKWISE_STRICT_BLOCK2_OPTION=false
[safeCall-2] INFO org.eclipse.californium.core.network.stack.ReliabilityLayer - ReliabilityLayer uses ACK_TIMEOUT=2000, ACK_RANDOM_FACTOR=1.5, and ACK_TIMEOUT_SCALE=2.0 as default
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Endpoint [coaps://0.0.0.0:0] requires an executor to start, using default single-threaded daemon executor
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - multiple network interfaces, using smallest MTU [1460]
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - DTLSConnector listening on 0.0.0.0/0.0.0.0:44443, recv buf = 106496, send buf = 106496, recv packet size = 16490, MTU = 1460
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Started endpoint at coaps://0.0.0.0:44443
[safeCall-2] INFO org.eclipse.californium.core.CoapClient - started set client endpoint 0.0.0.0/0.0.0.0:44443
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:44443] INFO org.eclipse.californium.scandium.DTLSConnector - Starting worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:44443]
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Destroying endpoint at coaps://0.0.0.0:44443
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Stopping endpoint at coaps://0.0.0.0:44443
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - Stopping DTLS connector on [0.0.0.0/0.0.0.0:44443]
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:44443] INFO org.eclipse.californium.scandium.DTLSConnector - Worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:44443] has terminated
[safeCall-2] INFO org.eclipse.californium.scandium.dtls.InMemoryConnectionStore - Created new InMemoryConnectionStore [capacity: 100, connection expiration threshold: 60s]
[safeCall-2] INFO org.eclipse.californium.core.network.RandomTokenGenerator - using tokens of 8 bytes in length
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps CoapEndpoint uses strict context
[safeCall-2] INFO org.eclipse.californium.core.network.stack.BlockwiseLayer - BlockwiseLayer uses MAX_MESSAGE_SIZE=1024, PREFERRED_BLOCK_SIZE=512, BLOCKWISE_STATUS_LIFETIME=300000, MAX_RESOURCE_BODY_SIZE=8192, BLOCKWISE_STRICT_BLOCK2_OPTION=false
[safeCall-2] INFO org.eclipse.californium.core.network.stack.ReliabilityLayer - ReliabilityLayer uses ACK_TIMEOUT=2000, ACK_RANDOM_FACTOR=1.5, and ACK_TIMEOUT_SCALE=2.0 as default
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Endpoint [coaps://0.0.0.0:0] requires an executor to start, using default single-threaded daemon executor
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - multiple network interfaces, using smallest MTU [1460]
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - DTLSConnector listening on 0.0.0.0/0.0.0.0:50620, recv buf = 106496, send buf = 106496, recv packet size = 16490, MTU = 1460
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Started endpoint at coaps://0.0.0.0:50620
[safeCall-2] INFO org.eclipse.californium.core.CoapClient - started set client endpoint 0.0.0.0/0.0.0.0:50620
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:50620] INFO org.eclipse.californium.scandium.DTLSConnector - Starting worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:50620]
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Destroying endpoint at coaps://0.0.0.0:50620
[safeCall-2] INFO org.eclipse.californium.core.network.CoapEndpoint - coaps Stopping endpoint at coaps://0.0.0.0:50620
[safeCall-2] INFO org.eclipse.californium.scandium.DTLSConnector - Stopping DTLS connector on [0.0.0.0/0.0.0.0:50620]
[DTLS-Receiver-0-0.0.0.0/0.0.0.0:50620] INFO org.eclipse.californium.scandium.DTLSConnector - Worker thread [DTLS-Receiver-0-0.0.0.0/0.0.0.0:50620] has terminated
Tests run  : 7
Passed     : 7
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.tradfri.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/target/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.tradfri.tests/2.5.3-SNAPSHOT/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.tradfri.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.tradfri.tests/2.5.3-SNAPSHOT/org.openhab.binding.tradfri.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ------< org.openhab.addons.itests:org.openhab.binding.wemo.tests >------
[INFO] Building openHAB Add-ons :: Integration Tests :: Wemo Binding Tests 2.5.3-SNAPSHOT [244/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.binding.wemo.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.binding.wemo.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.binding.wemo.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.binding.wemo.tests ---
[INFO] Changes detected - recompiling the module!
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[26,803] The type InboxFilterCriteria is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[36,1242] The import org.openhab.binding.wemo.internal.discovery.WemoDiscoveryService is never used
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[76,2493] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[78,2614] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[79,2653] Device is a raw type. References to generic type Device<DI,D,S> should be parameterized
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[83,2763] Potential null pointer access: The variable device may be null at this location
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2988] The method get(InboxFilterCriteria) from the type Inbox is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2996] The type InboxFilterCriteria is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoDiscoveryOSGiTest.java:[89,2996] The constructor InboxFilterCriteria(ThingUID, DiscoveryResultFlag) is deprecated
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/test/GenericWemoOSGiTest.java:[118,4936] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull ChannelTypeProvider'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/test/GenericWemoOSGiTest.java:[119,5047] The constructor ChannelType(ChannelTypeUID, boolean, String, ChannelKind, String, String, String, Set<String>, StateDescription, EventDescription, URI) is deprecated
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoLightHandlerOSGiTest.java:[42,1534] The import org.openhab.binding.wemo.internal.handler.WemoLightHandler is never used
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoHandlerTest.java:[61,2176] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull Thing'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[WARNING] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/handler/test/WemoMakerHandlerOSGiTest.java:[40,1406] The import org.openhab.binding.wemo.internal.handler.WemoMakerHandler is never used
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoLinkDiscoveryServiceOSGiTest.java:[60,2144] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull Bridge'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[INFO] /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/main/java/org/openhab/binding/wemo/internal/discovery/test/WemoLinkDiscoveryServiceOSGiTest.java:[64,2352] Unsafe interpretation of method return type as '@NonNull' based on substitution 'T=@NonNull WemoBridgeHandler'. Declaring type 'Mockito' doesn't seem to be designed with null type annotations in mind
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.binding.wemo.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.binding.wemo.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.binding.wemo.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.binding.wemo.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.binding.wemo.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.binding.wemo.tests ---
[INFO] Matching glob *
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for ch.qos.logback.core_1.2.3 [1] []
required wires for com.google.gson_2.8.2.v20180104-1110 [2] []
required wires for javax.measure.unit-api_1.0.0 [3] []
required wires for org.apache.commons.exec_1.1.0 [4] []
required wires for org.apache.commons.io_2.2.0 [5] []
required wires for org.apache.commons.lang_2.6.0 [6] []
required wires for org.apache.felix.configadmin_1.9.8 [7] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [8] []
required wires for org.apache.felix.scr_2.1.10 [9] []
required wires for org.apache.xbean.bundleutils_4.12.0 [10] []
required wires for org.apache.xbean.finder_4.12.0 [11] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [12] []
required wires for org.jupnp_2.5.2 [13] []
required wires for org.objenesis_2.6.0 [14] []
required wires for org.openhab.core_2.5.0 [15] []
required wires for org.openhab.core.config.core_2.5.0 [16] []
required wires for org.openhab.core.config.discovery_2.5.0 [17] []
required wires for org.openhab.core.config.discovery.upnp_2.5.0 [18] []
required wires for org.openhab.core.io.console_2.5.0 [19] []
required wires for org.openhab.core.io.net_2.5.0 [20] []
required wires for org.openhab.core.io.transport.upnp_2.5.0 [21] []
required wires for org.openhab.core.test_2.5.0 [22] []
required wires for org.openhab.core.thing_2.5.0 [23] []
required wires for org.osgi.service.event_1.4.0.201802012106 [24] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [25] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [26] []
required wires for slf4j.api_1.7.25 [27] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [28] []
required wires for org.openhab.core.binding.xml_2.5.0 [29] []
required wires for org.openhab.core.config.xml_2.5.0 [30] []
required wires for org.openhab.core.thing.xml_2.5.0 [31] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [32] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [33] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [34] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [35] []
required wires for tec.uom.se_1.0.10 [36] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [37] []
required wires for net.bytebuddy.byte-buddy_1.9.10 [38] []
required wires for net.bytebuddy.byte-buddy-agent_1.9.10 [39] []
required wires for org.mockito.mockito-core_3.1.0 [40] []
required wires for org.objectweb.asm_7.1.0 [41] []
required wires for org.objectweb.asm.commons_7.1.0 [42] []
required wires for org.objectweb.asm.tree_7.1.0 [43] []
required wires for org.eclipse.jetty.client_9.4.20.v20190813 [44] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [45] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [46] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [47] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [48] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [49] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [50] []
required wires for org.eclipse.jetty.websocket.api_9.4.20.v20190813 [51] []
required wires for org.eclipse.jetty.websocket.client_9.4.20.v20190813 [52] []
required wires for org.eclipse.jetty.websocket.common_9.4.20.v20190813 [53] []
required wires for org.eclipse.jetty.xml_9.4.20.v20190813 [54] []
required wires for org.ops4j.pax.web.pax-web-api_7.2.11 [55] []
required wires for slf4j.simple_1.7.21 [56] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for org.openhab.binding.wemo_2.5.3.202003080845 [57] []
required wires for org.openhab.binding.wemo.tests_2.5.3.202003080852 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.wemo)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080845"; osgi.wiring.host="org.openhab.binding.wemo"]
required wires for biz.aQute.tester_4.3.0.201909301554 [59] []
required wires for org.openhab.binding.wemo.tests_2.5.3.202003080852 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.binding.wemo)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080845"; osgi.wiring.host="org.openhab.binding.wemo"]
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:insight:Test-1_0-22124' to inbox.
[OH-thingHandler-1] INFO org.eclipse.jetty.util.log - Logging initialized @3041ms to org.eclipse.jetty.util.log.Slf4jLog
[OH-thingHandler-1] ERROR org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl - Could not start Jetty http client
java.lang.InterruptedException
	at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1302)
	at java.util.concurrent.CountDownLatch.await(CountDownLatch.java:231)
	at org.eclipse.jetty.io.ManagedSelector.doStart(ManagedSelector.java:122)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.io.SelectorManager.doStart(SelectorManager.java:262)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.client.AbstractConnectorHttpClientTransport.doStart(AbstractConnectorHttpClientTransport.java:64)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:169)
	at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:117)
	at org.eclipse.jetty.client.HttpClient.doStart(HttpClient.java:244)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$2.run(WebClientFactoryImpl.java:280)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$2.run(WebClientFactoryImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.createHttpClientInternal(WebClientFactoryImpl.java:256)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.access$7(WebClientFactoryImpl.java:253)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$1.run(WebClientFactoryImpl.java:224)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl$1.run(WebClientFactoryImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.initialize(WebClientFactoryImpl.java:215)
	at org.eclipse.smarthome.io.net.http.internal.WebClientFactoryImpl.getCommonHttpClient(WebClientFactoryImpl.java:166)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrlAndGetReponse(HttpUtil.java:194)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrl(HttpUtil.java:156)
	at org.eclipse.smarthome.io.net.http.HttpUtil.executeUrl(HttpUtil.java:131)
	at org.openhab.binding.wemo.internal.http.WemoHttpCall.executeCall(WemoHttpCall.java:44)
	at org.openhab.binding.wemo.internal.handler.WemoHandler.updateWemoState(WemoHandler.java:443)
	at org.openhab.binding.wemo.internal.handler.WemoHandler$1.run(WemoHandler.java:101)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[OH-thingHandler-1] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to get actual state for device 'wemo:insight:Test-1_0-22124': Could not start Jetty http client
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:socket:Test-1_0-22124' to inbox.
[main] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to send command 'OFF' for device 'wemo:socket:TestThing': Invalid URI host: null (authority: 127.0.0.1:null)
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:socket:Test-1_0-22124' to inbox.
[main] ERROR org.openhab.binding.wemo.internal.handler.WemoHandler - Failed to get actual state for device 'wemo:socket:TestThing': Invalid URI host: null (authority: 127.0.0.1:null)
[safeCall-1] ERROR org.eclipse.smarthome.core.internal.common.AbstractInvocationHandler - An error occurred while calling method 'Runnable.run()' on 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$$Lambda$113/1269826537@10f3d60': null
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.setThingStatus(ThingManagerImpl.java:1177)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.lambda$5(ThingManagerImpl.java:804)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.eclipse.smarthome.core.internal.common.AbstractInvocationHandler.invokeDirect(AbstractInvocationHandler.java:152)
	at org.eclipse.smarthome.core.internal.common.Invocation.call(Invocation.java:52)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-1] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@14b7786' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:467)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[forceRemove-1] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@60cf62ad' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:Maker:Test-1_0-22124' to inbox.
[main] INFO org.eclipse.smarthome.config.discovery.internal.PersistentInbox - Added new thing 'wemo:Maker:Test-1_0-22124' to inbox.
[forceRemove-1] ERROR org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl - Could not inform the ThingTracker 'org.eclipse.smarthome.core.thing.internal.ThingManagerImpl@296e281a' about the 'THING_REMOVED' event!
java.lang.NullPointerException
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.doUnregisterHandler(ThingManagerImpl.java:792)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterHandler(ThingManagerImpl.java:783)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.unregisterAndDisposeHandler(ThingManagerImpl.java:860)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl.thingRemoved(ThingManagerImpl.java:465)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyTrackers(ThingRegistryImpl.java:217)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:137)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.notifyListenersAboutRemovedElement(ThingRegistryImpl.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:243)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.removed(AbstractRegistry.java:1)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:59)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListeners(AbstractProvider.java:75)
	at org.eclipse.smarthome.core.common.registry.AbstractProvider.notifyListenersAboutRemovedElement(AbstractProvider.java:83)
	at org.eclipse.smarthome.core.common.registry.AbstractManagedProvider.remove(AbstractManagedProvider.java:103)
	at org.eclipse.smarthome.core.common.registry.AbstractRegistry.remove(AbstractRegistry.java:338)
	at org.eclipse.smarthome.core.thing.internal.ThingRegistryImpl.forceRemove(ThingRegistryImpl.java:104)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:975)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8$1.run(ThingManagerImpl.java:1)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.eclipse.smarthome.core.thing.internal.ThingManagerImpl$8.run(ThingManagerImpl.java:972)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Tests run  : 24
Passed     : 24
Errors     : 0
Failures   : 0
[INFO] No Errors
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ org.openhab.binding.wemo.tests ---
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/target/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.wemo.tests/2.5.3-SNAPSHOT/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.jar
[INFO] Installing /home/travis/build/openhab/openhab-addons/itests/org.openhab.binding.wemo.tests/pom.xml to /home/travis/.m2/repository/org/openhab/addons/itests/org.openhab.binding.wemo.tests/2.5.3-SNAPSHOT/org.openhab.binding.wemo.tests-2.5.3-SNAPSHOT.pom
[INFO] 
[INFO] ----< org.openhab.addons.itests:org.openhab.io.hueemulation.tests >-----
[INFO] Building openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests 2.5.3-SNAPSHOT [245/246]
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-java) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- directory-maven-plugin:0.3.1:directory-of (directories) @ org.openhab.io.hueemulation.tests ---
[INFO] Directory of org.openhab.addons:org.openhab.addons.reactor set to: /home/travis/build/openhab/openhab-addons
[INFO] 
[INFO] --- spotless-maven-plugin:1.24.3:check (codestyle_check) @ org.openhab.io.hueemulation.tests ---
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] Spotless check skipped
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ org.openhab.io.hueemulation.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/main/resources
[INFO] 
[INFO] --- build-helper-maven-plugin:3.0.0:reserve-network-port (reserve-network-port) @ org.openhab.io.hueemulation.tests ---
[INFO] Reserved port 36105 for org.osgi.service.http.port
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ org.openhab.io.hueemulation.tests ---
[INFO] Changes detected - recompiling the module!
[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
[INFO] 
[INFO] --- bnd-maven-plugin:4.3.0:bnd-process (default) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ org.openhab.io.hueemulation.tests ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ org.openhab.io.hueemulation.tests ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ org.openhab.io.hueemulation.tests ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ org.openhab.io.hueemulation.tests ---
[INFO] Building jar: /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/org.openhab.io.hueemulation.tests-2.5.3-SNAPSHOT.jar
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (index) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- bnd-indexer-maven-plugin:4.3.0:index (test-index) @ org.openhab.io.hueemulation.tests ---
[INFO] 
[INFO] --- bnd-testing-maven-plugin:4.3.0:testing (default) @ org.openhab.io.hueemulation.tests ---
[INFO] Matching glob *
[main] INFO org.eclipse.jetty.util.log - Logging initialized @2236ms to org.eclipse.jetty.util.log.Slf4jLog
[main] INFO org.ops4j.pax.web.service.internal.Activator - EventAdmin support enabled, servlet events will be postet to topics.
[main] INFO org.ops4j.pax.web.service.internal.Activator - LogService support enabled, log events will be created.
[main] INFO org.ops4j.pax.web.service.internal.Activator - Pax Web started
required wires for org.eclipse.osgi_3.13.100.v20180827-1536 [0] []
required wires for ch.qos.logback.core_1.2.3 [1] []
required wires for com.google.gson_2.8.2.v20180104-1110 [2] []
required wires for javax.measure.unit-api_1.0.0 [3] []
required wires for org.apache.commons.io_2.2.0 [4] []
required wires for org.apache.commons.lang_2.6.0 [5] []
required wires for org.apache.felix.http.servlet-api_1.1.2 [6] []
required wires for org.apache.felix.scr_2.1.10 [7] []
required wires for org.eclipse.equinox.event_1.4.300.v20180827-1235 [8] []
required wires for org.openhab.core_2.5.0 [9] []
required wires for org.openhab.core.config.core_2.5.0 [10] []
required wires for org.openhab.core.test_2.5.0 [11] []
required wires for org.osgi.service.event_1.4.0.201802012106 [12] []
required wires for osgi.enroute.hamcrest.wrapper_1.3.0.201610141744 [13] []
required wires for osgi.enroute.junit.wrapper_4.12.0.201610141744 [14] []
required wires for slf4j.api_1.7.25 [15] []
required wires for org.apache.commons.exec_1.1.0 [16] []
required wires for org.apache.felix.configadmin_1.9.8 [17] []
required wires for org.apache.servicemix.specs.activation-api-1.1_2.9.0 [18] []
required wires for org.apache.servicemix.specs.jaxb-api-2.2_2.9.0 [19] []
required wires for org.apache.servicemix.specs.stax-api-1.2_2.9.0 [20] []
required wires for org.apache.xbean.bundleutils_4.12.0 [21] []
required wires for org.apache.xbean.finder_4.12.0 [22] []
required wires for org.jupnp_2.5.2 [23] []
required wires for org.openhab.core.automation_2.5.0 [24] []
required wires for org.openhab.core.io.console_2.5.0 [25] []
required wires for org.openhab.core.io.net_2.5.0 [26] []
required wires for org.openhab.core.thing_2.5.0 [27] []
required wires for org.apache.servicemix.bundles.xstream_1.4.7.1 [28] []
required wires for org.openhab.core.binding.xml_2.5.0 [29] []
required wires for org.openhab.core.config.xml_2.5.0 [30] []
required wires for org.openhab.core.thing.xml_2.5.0 [31] []
required wires for com.eclipsesource.jaxrs.jersey-all_2.22.2 [32] []
required wires for tec.uom.lib.uom-lib-common_1.0.3 [33] []
required wires for tec.uom.se_1.0.10 [34] []
required wires for org.apache.servicemix.bundles.jaxb-impl_2.2.11.1 [35] []
required wires for org.openhab.core.ephemeris_2.5.0 [36] []
required wires for org.objectweb.asm_7.1.0 [37] []
required wires for org.objectweb.asm.commons_7.1.0 [38] []
required wires for org.objectweb.asm.tree_7.1.0 [39] []
required wires for jollyday_0.5.8 [40] []
required wires for org.threeten.extra_1.4.0 [41] []
required wires for org.eclipse.jetty.client_9.4.20.v20190813 [42] []
required wires for org.eclipse.jetty.http_9.4.20.v20190813 [43] []
required wires for org.eclipse.jetty.io_9.4.20.v20190813 [44] []
required wires for org.eclipse.jetty.security_9.4.20.v20190813 [45] []
required wires for org.eclipse.jetty.server_9.4.20.v20190813 [46] []
required wires for org.eclipse.jetty.servlet_9.4.20.v20190813 [47] []
required wires for org.eclipse.jetty.util_9.4.20.v20190813 [48] []
required wires for org.eclipse.jetty.websocket.api_9.4.20.v20190813 [49] []
required wires for org.eclipse.jetty.websocket.client_9.4.20.v20190813 [50] []
required wires for org.eclipse.jetty.websocket.common_9.4.20.v20190813 [51] []
required wires for org.eclipse.jetty.xml_9.4.20.v20190813 [52] []
required wires for org.ops4j.pax.swissbox.optional.jcl_1.8.3 [53] []
required wires for org.ops4j.pax.web.pax-web-api_7.2.11 [54] []
required wires for org.ops4j.pax.web.pax-web-jetty_7.2.11 [55] []
required wires for org.ops4j.pax.web.pax-web-runtime_7.2.11 [56] []
required wires for org.ops4j.pax.web.pax-web-spi_7.2.11 [57] []
required wires for slf4j.simple_1.7.21 [58] [osgi.wiring.host; filter:="(osgi.wiring.host=slf4j.api)" -> osgi.wiring.host; bundle-version:Version="1.7.25"; osgi.wiring.host="slf4j.api"]
required wires for org.openhab.io.hueemulation_2.5.3.202003080846 [59] []
required wires for org.openhab.io.hueemulation.tests_2.5.3.202003080852 [60] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.io.hueemulation)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080846"; osgi.wiring.host="org.openhab.io.hueemulation"]
required wires for biz.aQute.tester_4.3.0.201909301554 [61] []
required wires for org.openhab.io.hueemulation.tests_2.5.3.202003080852 [60] [osgi.wiring.host; filter:="(osgi.wiring.host=org.openhab.io.hueemulation)" -> osgi.wiring.host; bundle-version:Version="2.5.3.202003080846"; osgi.wiring.host="org.openhab.io.hueemulation"]
[OH-common-1] INFO org.openhab.io.hueemulation.internal.ConfigStore - No unique ID assigned yet. Assigning 94071ecd-7750-4edf-9dec-46035f1bec62 and restarting...
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.openhab.hueemulation)] INFO org.openhab.io.hueemulation.internal.ConfigStore - Using discovery ip fe80:0:0:0:4001:aff:fe14:a%ens4
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.openhab.hueemulation)] INFO org.openhab.io.hueemulation.internal.ConfigStore - Hue Emulation pairing disabled
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyFactoryImpl - No ALPN class available
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyFactoryImpl - HTTP/2 not available, creating standard ServerConnector for Http
[paxweb-config-1-thread-1] INFO org.ops4j.pax.web.service.jetty.internal.JettyServerImpl - Pax Web available at [0.0.0.0]:[36105]
Components implementing org.openhab.io.hueemulation.internal.HueEmulationService:
110 [SATISFIED] org.openhab.io.hueemulation.internal.HueEmulationService in org.openhab.io.hueemulation
Components implementing org.openhab.io.hueemulation.internal.HueEmulationService:
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.internal.HttpServiceFactoryImpl - Binding bundle: [org.openhab.io.hueemulation_2.5.3.202003080846 [59]] to http service
110 [SATISFIED] org.openhab.io.hueemulation.internal.HueEmulationService in org.openhab.io.hueemulation
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - will add org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer to ServletContainerInitializers
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - added ServletContainerInitializer: org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.jetty.internal.HttpServiceContext - registering context DefaultHttpContext [bundle=org.openhab.io.hueemulation_2.5.3.202003080846 [59], contextID=default], with context-name: 
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.session - DefaultSessionIdManager workerName=node0
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.session - No SessionScavenger set, using defaults
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.session - node0 Scavenging every 600000ms
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.handler.ContextHandler - Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.openhab.io.hueemulation_2.5.3.202003080846 [59], contextID=default]}
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.Server - jetty-9.4.20.v20190813; built: 2019-08-13T21:28:18.144Z; git: 84700530e645e812b336747464d6fbbf370c9a20; jvm 1.8.0_242-8u242-b08-0ubuntu3~16.04-b08
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.AbstractConnector - Started default@1d29e67d{HTTP/1.1,[http/1.1]}{0.0.0.0:36105}
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.Server - Started @2835ms
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.internal.HttpServiceFactoryImpl - Binding bundle: [org.jupnp_2.5.2 [23]] to http service
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.jupnp.UpnpServiceImpl - Starting UPnP service...
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.jupnp.transport.impl.osgi.HttpServiceServletContainerAdapter - Registering UPnP callback servlet as /upnpcallback
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.utils.ServletContainerInitializerScanner - will add org.glassfish.jersey.servlet.init.JerseyServletContainerInitializer to ServletContainerInitializers
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] WARN org.ops4j.pax.web.utils.ServletContainerInitializerScanner - failed to parse and instantiate of javax.servlet.ServletContainerInitializer in classpath
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.ops4j.pax.web.service.jetty.internal.HttpServiceContext - registering context DefaultHttpContext [bundle=org.jupnp_2.5.2 [23], contextID=custom], with context-name: 
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.eclipse.jetty.server.handler.ContextHandler - Started HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.jupnp_2.5.2 [23], contextID=custom]}
[qtp209762176-41] INFO org.eclipse.jetty.util.TypeUtil - JVM Runtime does not support Modules
[HueEmulation UPNP Server] INFO org.openhab.io.hueemulation.internal.upnp.UpnpServer - Hue Emulation UPNP server started on 127.0.0.1:8080
[CM Event Dispatcher (Fire ConfigurationEvent: pid=org.jupnp)] INFO org.openhab.io.hueemulation.internal.HueEmulationService - Hue Emulation service available under /api
TEST UpnpServiceTest(org.openhab.io.hueemulation.internal.HueEmulationServiceOSGiTest) <<< ERROR: test timed out after 10000 milliseconds
org.junit.runners.model.TestTimedOutException: test timed out after 10000 milliseconds
	at java.lang.Thread.sleep(Native Method)
	at org.eclipse.smarthome.test.java.JavaTest.internalSleep(JavaTest.java:202)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:144)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:120)
	at org.eclipse.smarthome.test.java.JavaTest.waitForAssert(JavaTest.java:73)
	at org.openhab.io.hueemulation.internal.HueEmulationServiceOSGiTest.UpnpServiceTest(HueEmulationServiceOSGiTest.java:93)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
	at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.lang.Thread.run(Thread.java:748)
Tests run  : 1
Passed     : 0
Errors     : 1
Failures   : 0
[INFO] 1 Error(s)
[ERROR] Error   : Exit code remote process 1: /usr/lib/jvm/java-1.8.0-openjdk-amd64/bin/java -cp /home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache/biz.aQute.launcher/biz.aQute.launcher.pre.jar -Dlauncher.properties="/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/generated/launch8764858226217812294.properties" -Dorg.osgi.service.http.port=36105 -ea -Dlauncher.runpath="/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/org.openhab.core.bom.runtime-index/org.eclipse.osgi-3.13.100.v20180827-1536.jar,/home/travis/build/openhab/openhab-addons/itests/org.openhab.io.hueemulation.tests/target/test/tmp/testing/itest/cnf/cache/4.3.0/bnd-cache/biz.aQute.launcher/biz.aQute.launcher-4.3.0.jar" aQute.launcher.pre.EmbeddedLauncher
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for openHAB Add-ons 2.5.3-SNAPSHOT:
[INFO] 
[INFO] openHAB Add-ons .................................... SUCCESS [  1.789 s]
[INFO] openHAB Add-ons :: BOM ............................. SUCCESS [  0.373 s]
[INFO] openHAB Add-ons :: BOM :: Runtime Index ............ SUCCESS [  8.772 s]
[INFO] openHAB Add-ons :: BOM :: Test Index ............... SUCCESS [  1.978 s]
[INFO] openHAB Add-ons :: BOM :: openHAB Core Index ....... SUCCESS [  1.105 s]
[INFO] openHAB Add-ons :: Bundles ......................... SUCCESS [  2.272 s]
[INFO] openHAB Add-ons :: Bundles :: Airquality Binding ... SUCCESS [  9.387 s]
[INFO] openHAB Add-ons :: Bundles :: AirVisual Node Air Quality Monitor Binding SUCCESS [  7.720 s]
[INFO] openHAB Add-ons :: Bundles :: AllPlay Binding ...... SUCCESS [  7.505 s]
[INFO] openHAB Add-ons :: Bundles :: Amazon Dash Button Binding SUCCESS [  4.297 s]
[INFO] openHAB Add-ons :: Bundles :: Amazon Echo Control Binding SUCCESS [  4.023 s]
[INFO] openHAB Add-ons :: Bundles :: Ambient Weather Binding SUCCESS [  3.693 s]
[INFO] openHAB Add-ons :: Bundles :: Astro Binding ........ SUCCESS [  5.268 s]
[INFO] openHAB Add-ons :: Bundles :: Atlona Binding ....... SUCCESS [  3.075 s]
[INFO] openHAB Add-ons :: Bundles :: Autelis Binding ...... SUCCESS [  2.619 s]
[INFO] openHAB Add-ons :: Bundles :: AVM FRITZ! Binding ... SUCCESS [  4.870 s]
[INFO] openHAB Add-ons :: Bundles :: BigAssFan Binding .... SUCCESS [  2.826 s]
[INFO] openHAB Add-ons :: Bundles :: Bluetooth Binding .... SUCCESS [  4.882 s]
[INFO] openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter SUCCESS [  3.673 s]
[INFO] openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter SUCCESS [  4.006 s]
[INFO] openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter SUCCESS [  2.541 s]
[INFO] openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter SUCCESS [  2.423 s]
[INFO] openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter SUCCESS [  2.824 s]
[INFO] openHAB Add-ons :: Bundles :: Bosch Indego Binding . SUCCESS [  2.812 s]
[INFO] openHAB Add-ons :: Bundles :: BoseSoundTouch Binding SUCCESS [  2.781 s]
[INFO] openHAB Add-ons :: Bundles :: Buienradar Binding ... SUCCESS [  3.690 s]
[INFO] openHAB Add-ons :: Bundles :: Chromecast Binding ... SUCCESS [ 14.965 s]
[INFO] openHAB Add-ons :: Bundles :: CM11A Binding ........ SUCCESS [  2.574 s]
[INFO] openHAB Add-ons :: Bundles :: CoolMasterNet Binding  SUCCESS [  2.330 s]
[INFO] openHAB Add-ons :: Bundles :: Daikin Binding ....... SUCCESS [  2.582 s]
[INFO] openHAB Add-ons :: Bundles :: Dark Sky Binding ..... SUCCESS [  3.586 s]
[INFO] openHAB Add-ons :: Bundles :: Dresden Elektronik deCONZ Binding SUCCESS [  2.225 s]
[INFO] openHAB Add-ons :: Bundles :: Denon / Marantz Binding SUCCESS [  2.453 s]
[INFO] openHAB Add-ons :: Bundles :: Digiplex/EVO Binding . SUCCESS [  2.697 s]
[INFO] openHAB Add-ons :: Bundles :: DigitalSTROM Binding . SUCCESS [  2.886 s]
[INFO] openHAB Add-ons :: Bundles :: D-Link Smart Home Binding SUCCESS [  2.472 s]
[INFO] openHAB Add-ons :: Bundles :: DMX Binding .......... SUCCESS [  5.690 s]
[INFO] openHAB Add-ons :: Bundles :: Doorbird Binding ..... SUCCESS [  3.028 s]
[INFO] openHAB Add-ons :: Bundles :: DSCAlarm Binding ..... SUCCESS [  2.572 s]
[INFO] openHAB Add-ons :: Bundles :: DSMR Binding ......... SUCCESS [  6.288 s]
[INFO] openHAB Add-ons :: Bundles :: DwdUnwetter Binding .. SUCCESS [  5.013 s]
[INFO] openHAB Add-ons :: Bundles :: EleroTransmitterStick Binding SUCCESS [  2.246 s]
[INFO] openHAB Add-ons :: Bundles :: EnOcean Binding ...... SUCCESS [  2.735 s]
[INFO] openHAB Add-ons :: Bundles :: EnturNo Binding ...... SUCCESS [  2.014 s]
[INFO] openHAB Add-ons :: Bundles :: evohome Binding ...... SUCCESS [  2.077 s]
[INFO] openHAB Add-ons :: Bundles :: Exec Binding ......... SUCCESS [  1.993 s]
[INFO] openHAB Add-ons :: Bundles :: Feed Binding ......... SUCCESS [  2.130 s]
[INFO] openHAB Add-ons :: Bundles :: Feican Binding ....... SUCCESS [  1.938 s]
[INFO] openHAB Add-ons :: Bundles :: Folding Binding ...... SUCCESS [  1.997 s]
[INFO] openHAB Add-ons :: Bundles :: Foobot Binding ....... SUCCESS [  3.112 s]
[INFO] openHAB Add-ons :: Bundles :: Freebox Binding ...... SUCCESS [  2.157 s]
[INFO] openHAB Add-ons :: Bundles :: Fronius Binding ...... SUCCESS [  1.928 s]
[INFO] openHAB Add-ons :: Bundles :: FSInternetRadio Binding SUCCESS [  4.894 s]
[INFO] openHAB Add-ons :: Bundles :: FTP Upload Binding ... SUCCESS [  2.405 s]
[INFO] openHAB Add-ons :: Bundles :: Gardena Binding ...... SUCCESS [  1.994 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Map SUCCESS [  3.776 s]
[INFO] openHAB Add-ons :: Bundles :: GlobalCache Binding .. SUCCESS [  1.916 s]
[INFO] openHAB Add-ons :: Bundles :: GPSTracker Binding ... SUCCESS [  2.343 s]
[INFO] openHAB Add-ons :: Bundles :: GROHE ONDUS Binding .. SUCCESS [  2.058 s]
[INFO] openHAB Add-ons :: Bundles :: HarmonyHub Binding ... SUCCESS [  2.313 s]
[INFO] openHAB Add-ons :: Bundles :: HDanywhere Binding ... SUCCESS [  2.162 s]
[INFO] openHAB Add-ons :: Bundles :: Hunter Douglas PowerView Binding SUCCESS [  1.877 s]
[INFO] openHAB Add-ons :: Bundles :: Helios Binding ....... SUCCESS [  1.963 s]
[INFO] openHAB Add-ons :: Bundles :: Heos Binding ......... SUCCESS [  2.048 s]
[INFO] openHAB Add-ons :: Bundles :: Homematic Binding .... SUCCESS [  4.538 s]
[INFO] openHAB Add-ons :: Bundles :: HP Printer Binding ... SUCCESS [  1.993 s]
[INFO] openHAB Add-ons :: Bundles :: hue Binding .......... SUCCESS [  4.222 s]
[INFO] openHAB Add-ons :: Bundles :: Hydrawise Binding .... SUCCESS [  1.854 s]
[INFO] openHAB Add-ons :: Bundles :: Hyperion Binding ..... SUCCESS [  1.970 s]
[INFO] openHAB Add-ons :: Bundles :: iAquaLink Binding .... SUCCESS [  2.156 s]
[INFO] openHAB Add-ons :: Bundles :: iCloud Binding ....... SUCCESS [  1.985 s]
[INFO] openHAB Add-ons :: Bundles :: IHC Binding .......... SUCCESS [  5.204 s]
[INFO] openHAB Add-ons :: Bundles :: innogy Smarthome Binding SUCCESS [  2.215 s]
[INFO] openHAB Add-ons :: Bundles :: IPP Binding .......... SUCCESS [  3.380 s]
[INFO] openHAB Add-ons :: Bundles :: IRtrans Binding ...... SUCCESS [  1.889 s]
[INFO] openHAB Add-ons :: Bundles :: JeeLink Binding ...... SUCCESS [  2.106 s]
[INFO] openHAB Add-ons :: Bundles :: Keba Binding ......... SUCCESS [  1.865 s]
[INFO] openHAB Add-ons :: Bundles :: KM200 Binding ........ SUCCESS [  1.965 s]
[INFO] openHAB Add-ons :: Bundles :: KNX Binding .......... SUCCESS [  3.481 s]
[INFO] openHAB Add-ons :: Bundles :: Kodi Binding ......... SUCCESS [  3.090 s]
[INFO] openHAB Add-ons :: Bundles :: Konnected Binding .... SUCCESS [  1.903 s]
[INFO] openHAB Add-ons :: Bundles :: Kostal Binding ....... SUCCESS [  2.127 s]
[INFO] openHAB Add-ons :: Bundles :: LaMetric Time Binding  SUCCESS [  2.033 s]
[INFO] openHAB Add-ons :: Bundles :: Leap Motion Binding .. SUCCESS [  2.180 s]
[INFO] openHAB Add-ons :: Bundles :: LG HomBot Binding .... SUCCESS [  1.828 s]
[INFO] openHAB Add-ons :: Bundles :: LG TV Serial Binding . SUCCESS [  1.908 s]
[INFO] openHAB Add-ons :: Bundles :: LG webOS Binding ..... SUCCESS [  2.119 s]
[INFO] openHAB Add-ons :: Bundles :: LIFX Binding ......... SUCCESS [  2.055 s]
[INFO] openHAB Add-ons :: Bundles :: LIRC Binding ......... SUCCESS [  2.328 s]
[INFO] openHAB Add-ons :: Bundles :: LinuxInput Binding ... SUCCESS [  2.509 s]
[INFO] openHAB Add-ons :: Bundles :: Log Reader Binding ... SUCCESS [  2.005 s]
[INFO] openHAB Add-ons :: Bundles :: Loxone Binding ....... SUCCESS [  5.218 s]
[INFO] openHAB Add-ons :: Bundles :: Lutron Binding ....... SUCCESS [  2.159 s]
[INFO] openHAB Add-ons :: Bundles :: Mail Binding ......... SUCCESS [  3.234 s]
[INFO] openHAB Add-ons :: Bundles :: MaxCube Binding ...... SUCCESS [  1.959 s]
[INFO] openHAB Add-ons :: Bundles :: mcp23017 Binding ..... SUCCESS [  2.063 s]
[INFO] openHAB Add-ons :: Bundles :: MELCloud Binding ..... SUCCESS [  1.820 s]
[INFO] openHAB Add-ons :: Bundles :: meteoblue Binding .... SUCCESS [  1.738 s]
[INFO] openHAB Add-ons :: Bundles :: meteostick Binding ... SUCCESS [  1.934 s]
[INFO] openHAB Add-ons :: Bundles :: Miele Binding ........ SUCCESS [  2.089 s]
[INFO] openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Home Binding SUCCESS [  1.850 s]
[INFO] openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding . SUCCESS [  1.962 s]
[INFO] openHAB Add-ons :: Bundles :: Millheat Binding ..... SUCCESS [  5.073 s]
[INFO] openHAB Add-ons :: Bundles :: Milight Binding ...... SUCCESS [  1.813 s]
[INFO] openHAB Add-ons :: Bundles :: Minecraft Binding .... SUCCESS [  2.567 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Modbus Transport SUCCESS [ 10.242 s]
[INFO] openHAB Add-ons :: Bundles :: Modbus Binding ....... SUCCESS [  4.321 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Broker Binding .. SUCCESS [  4.419 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Things and Channels SUCCESS [  5.370 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT HomeAssistant Convention SUCCESS [  3.281 s]
[INFO] openHAB Add-ons :: Bundles :: MQTT Homie Convention  SUCCESS [  4.491 s]
[INFO] openHAB Add-ons :: Bundles :: Nanoleaf Binding ..... SUCCESS [  3.046 s]
[INFO] openHAB Add-ons :: Bundles :: Neato Binding ........ SUCCESS [  1.881 s]
[INFO] openHAB Add-ons :: Bundles :: Neeo Binding ......... SUCCESS [  2.004 s]
[INFO] openHAB Add-ons :: Bundles :: NeoHub Binding ....... SUCCESS [  2.058 s]
[INFO] openHAB Add-ons :: Bundles :: Nest Binding ......... SUCCESS [  2.133 s]
[INFO] openHAB Add-ons :: Bundles :: Netatmo Binding ...... SUCCESS [  2.537 s]
[INFO] openHAB Add-ons :: Bundles :: Network Binding ...... SUCCESS [  4.342 s]
[INFO] openHAB Add-ons :: Bundles :: Network UPS Tools Binding SUCCESS [  3.662 s]
[INFO] openHAB Add-ons :: Bundles :: Nibe Heatpump Binding  SUCCESS [  3.256 s]
[INFO] openHAB Add-ons :: Bundles :: NibeUplink Binding ... SUCCESS [  1.910 s]
[INFO] openHAB Add-ons :: Bundles :: Nikobus Binding ...... SUCCESS [  1.866 s]
[INFO] openHAB Add-ons :: Bundles :: Niko Home Control Binding SUCCESS [  2.101 s]
[INFO] openHAB Add-ons :: Bundles :: NTP Binding .......... SUCCESS [  1.671 s]
[INFO] openHAB Add-ons :: Bundles :: Nuki Binding ......... SUCCESS [  1.941 s]
[INFO] openHAB Add-ons :: Bundles :: Oceanic Binding ...... SUCCESS [  1.929 s]
[INFO] openHAB Add-ons :: Bundles :: OmnikInverter Binding  SUCCESS [  2.691 s]
[INFO] openHAB Add-ons :: Bundles :: OneBusAway Binding ... SUCCESS [  1.814 s]
[INFO] openHAB Add-ons :: Bundles :: OneWireGPIO Binding .. SUCCESS [  2.062 s]
[INFO] openHAB Add-ons :: Bundles :: OneWire Binding ...... SUCCESS [  4.898 s]
[INFO] openHAB Add-ons :: Bundles :: Onkyo Binding ........ SUCCESS [  1.913 s]
[INFO] openHAB Add-ons :: Bundles :: OpenGarage Binding ... SUCCESS [  1.811 s]
[INFO] openHAB Add-ons :: Bundles :: OpenSprinkler Binding  SUCCESS [  1.876 s]
[INFO] openHAB Add-ons :: Bundles :: OpenUV Binding ....... SUCCESS [  1.753 s]
[INFO] openHAB Add-ons :: Bundles :: OpenWeatherMap Binding SUCCESS [  1.859 s]
[INFO] openHAB Add-ons :: Bundles :: Orvibo Binding ....... SUCCESS [  2.146 s]
[INFO] openHAB Add-ons :: Bundles :: ParadoxAlarm Binding . SUCCESS [  1.985 s]
[INFO] openHAB Add-ons :: Bundles :: Pentair Binding ...... SUCCESS [  1.858 s]
[INFO] openHAB Add-ons :: Bundles :: PHC Binding .......... SUCCESS [  1.796 s]
[INFO] openHAB Add-ons :: Bundles :: PioneerAvr Binding ... SUCCESS [  1.960 s]
[INFO] openHAB Add-ons :: Bundles :: pixometer Binding .... SUCCESS [  1.817 s]
[INFO] openHAB Add-ons :: Bundles :: PJLink Binding ....... SUCCESS [  1.970 s]
[INFO] openHAB Add-ons :: Bundles :: PLCLogo Binding ...... SUCCESS [  2.418 s]
[INFO] openHAB Add-ons :: Bundles :: Plugwise Binding ..... SUCCESS [  2.057 s]
[INFO] openHAB Add-ons :: Bundles :: Powermax Binding ..... SUCCESS [  1.959 s]
[INFO] openHAB Add-ons :: Bundles :: Pulseaudio Binding ... SUCCESS [  1.866 s]
[INFO] openHAB Add-ons :: Bundles :: Pushbullet Binding ... SUCCESS [  1.898 s]
[INFO] openHAB Add-ons :: Bundles :: RegoHeatPump Binding . SUCCESS [  1.832 s]
[INFO] openHAB Add-ons :: Bundles :: Rfxcom Binding ....... SUCCESS [  3.730 s]
[INFO] openHAB Add-ons :: Bundles :: RME Binding .......... SUCCESS [  1.713 s]
[INFO] openHAB Add-ons :: Bundles :: Robonect Binding ..... SUCCESS [  4.504 s]
[INFO] openHAB Add-ons :: Bundles :: Rotel Binding ........ SUCCESS [  1.942 s]
[INFO] openHAB Add-ons :: Bundles :: RotelRa1x Binding .... SUCCESS [  2.085 s]
[INFO] openHAB Add-ons :: Bundles :: Russound Binding ..... SUCCESS [  1.951 s]
[INFO] openHAB Add-ons :: Bundles :: SamsungTV Binding .... SUCCESS [  1.948 s]
[INFO] openHAB Add-ons :: Bundles :: Satel Binding ........ SUCCESS [  2.040 s]
[INFO] openHAB Add-ons :: Bundles :: Seneye Binding ....... SUCCESS [  1.686 s]
[INFO] openHAB Add-ons :: Bundles :: senseBox Binding ..... SUCCESS [  1.730 s]
[INFO] openHAB Add-ons :: Bundles :: SerialButton Binding . SUCCESS [  1.709 s]
[INFO] openHAB Add-ons :: Bundles :: Shelly Binding ....... SUCCESS [  1.925 s]
[INFO] openHAB Add-ons :: Bundles :: Siemens RDS Binding .. SUCCESS [  1.744 s]
[INFO] openHAB Add-ons :: Bundles :: Sinope Binding ....... SUCCESS [  1.854 s]
[INFO] openHAB Add-ons :: Bundles :: Silvercrest Wifi Socket Binding SUCCESS [  1.662 s]
[INFO] openHAB Add-ons :: Bundles :: SleepIQ Binding ...... SUCCESS [  1.781 s]
[INFO] openHAB Add-ons :: Bundles :: SMA EnergyMeter Binding SUCCESS [  1.725 s]
[INFO] openHAB Add-ons :: Bundles :: Smartmeter Binding ... SUCCESS [ 33.789 s]
[INFO] openHAB Add-ons :: Bundles :: SNMP Binding ......... SUCCESS [  4.254 s]
[INFO] openHAB Add-ons :: Bundles :: SolarEdge Binding .... SUCCESS [  1.793 s]
[INFO] openHAB Add-ons :: Bundles :: Solar-Log Binding .... SUCCESS [  1.690 s]
[INFO] openHAB Add-ons :: Bundles :: SomfyTahoma Binding .. SUCCESS [  2.032 s]
[INFO] openHAB Add-ons :: Bundles :: Sonos Binding ........ SUCCESS [  2.010 s]
[INFO] openHAB Add-ons :: Bundles :: SonyAudio Binding .... SUCCESS [  1.507 s]
[INFO] openHAB Add-ons :: Bundles :: Sony Projector Binding SUCCESS [  2.251 s]
[INFO] openHAB Add-ons :: Bundles :: Spotify Binding ...... SUCCESS [  1.856 s]
[INFO] openHAB Add-ons :: Bundles :: SqueezeBox Binding ... SUCCESS [  2.010 s]
[INFO] openHAB Add-ons :: Bundles :: Synop Analyzer Binding SUCCESS [  1.839 s]
[INFO] openHAB Add-ons :: Bundles :: Systeminfo Binding ... SUCCESS [  2.288 s]
[INFO] openHAB Add-ons :: Bundles :: Tado Binding ......... SUCCESS [  2.240 s]
[INFO] openHAB Add-ons :: Bundles :: Tankerkoenig Binding . SUCCESS [  1.796 s]
[INFO] openHAB Add-ons :: Bundles :: Telegram Binding ..... SUCCESS [  2.047 s]
[INFO] openHAB Add-ons :: Bundles :: Tellstick Binding .... SUCCESS [  2.692 s]
[INFO] openHAB Add-ons :: Bundles :: Tesla Binding ........ SUCCESS [  1.998 s]
[INFO] openHAB Add-ons :: Bundles :: TP-Link Smart Home Binding SUCCESS [  4.605 s]
[INFO] openHAB Add-ons :: Bundles :: TRÅDFRI Binding ...... SUCCESS [  4.018 s]
[INFO] openHAB Add-ons :: Bundles :: UniFi Binding ........ SUCCESS [  2.457 s]
[INFO] openHAB Add-ons :: Bundles :: Somfy URTSI II binding SUCCESS [  1.690 s]
[INFO] openHAB Add-ons :: Bundles :: ValloxMV Binding ..... SUCCESS [  1.664 s]
[INFO] openHAB Add-ons :: Bundles :: Vektiva Binding ...... SUCCESS [  1.734 s]
[INFO] openHAB Add-ons :: Bundles :: Volvo On Call Binding  SUCCESS [  1.806 s]
[INFO] openHAB Add-ons :: Bundles :: Velbus Binding ....... SUCCESS [  1.855 s]
[INFO] openHAB Add-ons :: Bundles :: Velux Binding ........ SUCCESS [  2.159 s]
[INFO] openHAB Add-ons :: Bundles :: Vitotronic Binding ... SUCCESS [  1.671 s]
[INFO] openHAB Add-ons :: Bundles :: WeatherCompany Binding SUCCESS [  1.771 s]
[INFO] openHAB Add-ons :: Bundles :: WeatherUnderground Binding SUCCESS [  1.729 s]
[INFO] openHAB Add-ons :: Bundles :: Wemo Binding ......... SUCCESS [  1.927 s]
[INFO] openHAB Add-ons :: Bundles :: WiFiLED Binding ...... SUCCESS [  4.894 s]
[INFO] openHAB Add-ons :: Bundles :: Windcentrale Binding . SUCCESS [  1.778 s]
[INFO] openHAB Add-ons :: Bundles :: XMLTV Binding ........ SUCCESS [  1.812 s]
[INFO] openHAB Add-ons :: Bundles :: XMPPClient Binding ... SUCCESS [  3.463 s]
[INFO] openHAB Add-ons :: Bundles :: Yamaha Receiver Binding SUCCESS [  5.634 s]
[INFO] openHAB Add-ons :: Bundles :: Yeelight Binding ..... SUCCESS [  3.596 s]
[INFO] openHAB Add-ons :: Bundles :: Zoneminder Binding ... SUCCESS [  2.201 s]
[INFO] openHAB Add-ons :: Bundles :: ZWay Binding ......... SUCCESS [  2.292 s]
[INFO] openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace SUCCESS [  3.147 s]
[INFO] openHAB Add-ons :: Bundles :: Extension Service :: Eclipse IoT Marketplace (Automation) SUCCESS [  0.550 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Homekit ........ SUCCESS [  3.420 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Hue Emulation Service SUCCESS [ 10.148 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: ImperiHome Integration Service SUCCESS [  1.829 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Java Sound Support SUCCESS [  2.168 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: NEEO Integration SUCCESS [  2.267 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector SUCCESS [  1.732 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: MQTT Broker Moquette SUCCESS [ 18.643 s]
[INFO] openHAB Add-ons :: Bundles :: IO :: Web Audio Support SUCCESS [  1.777 s]
[INFO] openHAB Add-ons :: Bundles :: Persistence Service :: MapDB SUCCESS [  1.594 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Binary To JSON SUCCESS [  1.974 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Exec SUCCESS [  1.696 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: JavaScript SUCCESS [  1.744 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Jinja SUCCESS [  2.904 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath SUCCESS [  2.827 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: RegEx SUCCESS [  2.565 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Scale SUCCESS [  3.018 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: XPath SUCCESS [  2.626 s]
[INFO] openHAB Add-ons :: Bundles :: Transformation Service :: Xslt SUCCESS [  2.809 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Google Cloud Text-to-Speech SUCCESS [  1.946 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: macOS Text-to-Speech SUCCESS [  2.545 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Mary Text-to-Speech SUCCESS [  6.386 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Pico Text-to-Speech SUCCESS [  1.666 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: Polly Text-to-Speech SUCCESS [  1.841 s]
[INFO] openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech SUCCESS [  1.634 s]
[INFO] openHAB Add-ons :: BOM :: openHAB Add-ons .......... SUCCESS [  0.097 s]
[INFO] openHAB Add-ons :: Features :: Karaf ............... SUCCESS [  0.136 s]
[INFO] openHAB Add-ons :: Features :: Karaf :: Add-ons External SUCCESS [  0.149 s]
[INFO] openHAB Add-ons :: Features :: Karaf :: Add-ons .... SUCCESS [  4.777 s]
[INFO] openHAB Add-ons :: Integration Tests ............... SUCCESS [  0.045 s]
[INFO] openHAB Add-ons :: Integration Tests :: Astro Binding Tests SUCCESS [  5.003 s]
[INFO] openHAB Add-ons :: Integration Tests :: AVM FRITZ! Binding Tests SUCCESS [  4.908 s]
[INFO] openHAB Add-ons :: Integration Tests :: Feed Binding Tests SUCCESS [02:29 min]
[INFO] openHAB Add-ons :: Integration Tests :: hue Binding Tests SUCCESS [ 10.299 s]
[INFO] openHAB Add-ons :: Integration Tests :: MaxCube Binding Tests SUCCESS [  8.969 s]
[INFO] openHAB Add-ons :: Integration Tests :: Nest Binding Tests SUCCESS [ 14.323 s]
[INFO] openHAB Add-ons :: Integration Tests :: NTP Binding Tests SUCCESS [  5.211 s]
[INFO] openHAB Add-ons :: Integration Tests :: Systeminfo Binding Tests SUCCESS [ 52.443 s]
[INFO] openHAB Add-ons :: Integration Tests :: TRÅDFRI Binding SUCCESS [  3.958 s]
[INFO] openHAB Add-ons :: Integration Tests :: Wemo Binding Tests SUCCESS [  5.954 s]
[INFO] openHAB Add-ons :: Integration Tests :: Hue Emulation Service Tests FAILURE [ 15.580 s]
[INFO] openHAB Add-ons :: Integration Tests :: MapDB Persistence Tests SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  16:04 min
[INFO] Finished at: 2020-03-08T08:52:29Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal biz.aQute.bnd:bnd-testing-maven-plugin:4.3.0:testing (default) on project org.openhab.io.hueemulation.tests: 1 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
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :org.openhab.io.hueemulation.tests

Copy link
Contributor

@lolodomo lolodomo left a comment

Choose a reason for hiding this comment

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

I approve even if I remain very sceptical with the update of the thing configuration by the thing handler.
To be discussed more generally outside of this PR.

@sprehn sprehn changed the title [lgwebos] Wake-on-Lan Integration and Shutdown Detection [lgwebos] Wake-on-Lan Integration Mar 8, 2020
@lolodomo
Copy link
Contributor

My last option leads to current ON => OFF => ON => OFF when sending a OFF command. Not good.

@sprehn
Copy link
Contributor Author

sprehn commented Apr 18, 2020

less (channel updates) may be more. :-)

@lolodomo
Copy link
Contributor

lolodomo commented Apr 18, 2020

My previous proposal remains the best I think. It does not produce unnexpected switch toggling.
I tested it with and without autoupdate="false".

The only little problem, only when autoupdate="false" is not set on this item, is that the channel state is set to ON by the OH core framework a little too early, meaning before the binding is setting it when state REGISTERED is set.

We still have to recommend setting autoupdate="false" on this item, it allows the binding to fully control the update of this channel.

@sprehn
Copy link
Contributor Author

sprehn commented Apr 18, 2020

agree. will apply that proposal a bit later today

@lolodomo
Copy link
Contributor

less (channel updates) may be more. :-)

I reduced the number of channel update to 2 in the last proposed code.

I checked again the documentation and autoupdate="dalse" is included in the items example. Good point.

@lolodomo
Copy link
Contributor

@sprehn : just for my information, do you get this 5 minutes timeout or something shorter in your case ?

@sprehn
Copy link
Contributor Author

sprehn commented Apr 18, 2020

No, normally the device disconnects properly when the TV shuts down. it takes a few seconds. WebOs runs on linux. we simply wait until all services shut down. The 5min timeout exists indeed. without any activity on the websocket for 5mins it will close. that is why we have the keepalivejob

… CONNECTING and REGISTERING still count as OFF states.

Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>
…ding.

Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>
@sprehn
Copy link
Contributor Author

sprehn commented Apr 18, 2020

@lolodomo applied your patch
@cpmeister inlined isConnected, the method name is misleading

good to go now?

@TravisBuddy
Copy link

Travis tests were successful

Hey @sprehn,
we found no major flaws with your code. Still you might want to look at this logfile, as we usually suggest some optional improvements.

Copy link
Contributor

@lolodomo lolodomo left a comment

Choose a reason for hiding this comment

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

OK for me

@lolodomo
Copy link
Contributor

The following discussion should not block the merge of this PR ;)

No, normally the device disconnects properly when the TV shuts down. it takes a few seconds. WebOs runs on linux. we simply wait until all services shut down. The 5min timeout exists indeed. without any activity on the websocket for 5mins it will close. that is why we have the keepalivejob

That means the behaviour is different with models or maybe depends on a TV setting ?
How does it happen for you ? LGWebOSTVSocket::onClose is called few seconds after the TV is turned off ?

@lolodomo
Copy link
Contributor

lolodomo commented Apr 18, 2020

That means the behaviour is different with models or maybe depends on a TV setting ?

@sprehn : for your information, I have an enabled TV setting named "Démarrage rapide +". It could be translated into "Fast startup +". Maybe with this setting enabled, the TV is not really shutting down, like it is for your TV. Do you have this setting on your model ? I will check later what is the behaviour if I disable this setting.

@sprehn
Copy link
Contributor Author

sprehn commented Apr 18, 2020

LGWebOSTVSocket::onClose is called few seconds after the TV is turned off ?

yes, indeed

Fast startup +". Maybe with this setting enabled, the TV is not really shutting down, like it is for your TV. Do you have this setting on your model ?

yes, probably depends on model. I don't think I have it, but cannot check anymore. Left my apartment in the city again this morning - no access to TV anymore. But that would perfectly explain it. TV only turns off screen, but keeps on running in background and does not actively close the websocket connection in this case. We stop the keepAlive job, so 5mins later OH's http client decides to kill the connection due to timeout.
In light of that the enhancement in appsubscription, which you merged with #7355, must be a huge improvement.

Copy link
Contributor

@cpmeister cpmeister left a comment

Choose a reason for hiding this comment

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

LGTM

@cpmeister cpmeister merged commit f8a943c into openhab:2.5.x Apr 18, 2020
@cpmeister cpmeister added this to the 2.5.4 milestone Apr 18, 2020
@sprehn sprehn deleted the 2.5.x-WOL branch April 18, 2020 16:31
yfre pushed a commit to yfre/openhab-addons that referenced this pull request Apr 27, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
Signed-off-by: Eugen Freiter <freiter@gmx.de>
markus7017 pushed a commit to markus7017/openhab-addons that referenced this pull request May 29, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
LoungeFlyZ pushed a commit to LoungeFlyZ/openhab2-addons that referenced this pull request Jun 8, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
J-N-K pushed a commit to J-N-K/openhab-addons that referenced this pull request Jul 14, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
CSchlipp pushed a commit to CSchlipp/openhab-addons that referenced this pull request Jul 26, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
Signed-off-by: CSchlipp <christian@schlipp.de>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
andrewfg pushed a commit to andrewfg/openhab-addons that referenced this pull request Aug 31, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
DaanMeijer pushed a commit to DaanMeijer/openhab-addons that referenced this pull request Sep 1, 2020
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.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
* Adding WOL Implementation to PowerControl channel with ability to determine MAC (best effort via arp) and send WOL natively.
Removed Search, as second screen service does actually show up in regular scans now.
* Addressing review comments in WakeOnLanUitility and config.xml.
* Add mac and windows commands to discover MAC.
* Break once MAC is found in result.
* Using org.eclipse.smarthome.io.net.exec.ExecUtil instead of implementing Commandline Execution in the binding itself.
* Detecting which linux tool to detect MAC exists, arp or arping.
* Fixed typo in debug message.
* Addressing review comments on formatting.
* MacAddress parameter added to README demo item and Power Control Handler updated.
* Handle power on off commands in all possible LGWebOSTVSocket states.
* Reformatting debug message.
* Fix whitespace.
* Moved If statement cases into switch statement.
* Adding comments.
* Applying code review recommendations. Reducing power channel updates. CONNECTING and REGISTERING still count as OFF states.
* Inlining Socket's isConnected method. The method name was also misleading.
Signed-off-by: Sebastian Prehn <sebastian.prehn@gmx.de>

Co-authored-by: cpmeister <mistercpp2000@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement An enhancement or new feature for an existing add-on
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants