openHAB 5.1.4 file based jruby rules do not load

  • Platform information:
    • openHAB 5.1.4
    • RPI 5 8Gb Ram
    • Openhabian - DEBIAN_VERSION_FULL=13.3
    • Java Runtime Environment: openjdk 21.0.10 2026-01-20
    • openHAB version: 5.1.4 upgraded from 5.1.3
  • Issue of the topic: after upgrade none of my jruby files will load

I have a number of UI based and Files Based rules

After the upgrade to openHAB 5.1.4 I have an issue where all of the file based rules show up as ERROR: HANDLER

I have removed all the rules and added just one back to the /etc/openhab/automation/ruby folder

here it is and as you can see this is not a complex rule

The strange thing is all my UI rules that are created inside the UI continue to run as normal

I do not recall seeing any changes to openHAB 5.1.4 that would cause this

rule 'has UI Timer Refresh Rule' do

  cron '0 */2 * * * ?'

    run do
      VERSION="1.2"
      #DO_LOGGING = false
      #LOGGING_PREFIX = 'hasUiRefreshTimer:'
      if 'UI_Refresh_Timer'
        UI_Refresh_Timer << ZonedDateTime.now
        logger.info "UI Refresh Item updated"
      else
        logger.warn "Creating The UI Refresh Item"
        items.build(:persistent) {date_time_item 'UI_Refresh_Timer' }
        UI_Refresh_Timer << ZonedDateTime.now
      end

    end
end

I have done a clear cache using openhab-config but the result is the same

EDIT: The ONLY Message in the log file is the rule file being reloaded

2026-04-23 08:52:01.984 [INFO ] [ort.loader.AbstractScriptFileWatcher] - (Re-)Loading script '/etc/openhab/automation/ruby/hasUiRefreshTimer.rb'

EDIT: in case needed jrubyscripting info

JRuby 10.0.2.0
JRuby Scripting Library 5.47.5
ENV['GEM_HOME']: /etc/openhab/automation/ruby/.gem/10.0.2.0
ENV['RUBYLIB']: /etc/openhab/automation/ruby/lib
Script path: /etc/openhab/automation/ruby

JRuby Scripting Add-on Configuration:
=====================================
Ruby Gems
  gems: openhab-scripting=~>5.0
  bundle_gemfile: /etc/openhab/automation/ruby/Gemfile
  check_update: true
  require: openhab/dsl

Ruby Environment
  gem_home: /etc/openhab/automation/ruby/.gem/{RUBY_ENGINE_VERSION}
  rubylib: /etc/openhab/automation/ruby/lib
  dependency_tracking: true

System Properties
  local_context: singlethread
  local_variable: transient

JRuby Console
  console: irb

EDIT:

Also the additional logs - I see some wanting about contestants already initialised - I use the same constant name in different rules files and each may have a different value but this should NOT be and issues because each scripts constants are private ??

Loading JRuby script engine.../etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.engine.action::ActionService
                                                                                                                                                                                                                               /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::AudioActionService
                                                                                                                                                                                                  /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::BusEventActionService
                                                                                                                                                                        /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::EphemerisActionService
                                                                                                                                               /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::PersistenceActionService
                                                                                                                        /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::ScriptExecutionActionService
                                                                                                     /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::SemanticsActionService
                                                                            /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::ThingActionService
                                               /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/osgi.rb:28: warning: already initialized constant org.openhab.core.model.script.internal.engine.action::VoiceActionService
                  /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant org.openhab.core.model.script.actions::Audio
                                                                                                                                                                                                             /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant OpenHAB::Core::Actions::Audio
                                                                                                                                             /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant Audio
                                                     /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:36: warning: already initialized constant OpenHAB::Core::Actions::BusEvent
                                                                                                                                                                                                                                    /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant BusEvent
                                                                                                                                               /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant org.openhab.core.model.script.actions::Ephemeris
                                                                                                  /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant OpenHAB::Core::Actions::Ephemeris
                                      /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant Ephemeris
                                                                                                                                                                                              /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant PersistenceExtensions
                                                                                                                      /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:36: warning: already initialized constant OpenHAB::Core::Actions::ScriptExecution
                                                                /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant ScriptExecution
                                                                                                                                                                                                                              /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant org.openhab.core.model.script.actions::Semantics
                                                                                                                                                                                 /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant OpenHAB::Core::Actions::Semantics
                                                                                                                     /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant Semantics
                                 /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant org.openhab.core.model.script.actions::Things
                                                                                                                                                                                                                             /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant OpenHAB::Core::Actions::Things
                                                                                                                                                              /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant Things
                                                                       /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant org.openhab.core.model.script.actions::Voice
                      /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:38: warning: already initialized constant OpenHAB::Core::Actions::Voice
                                                                                                                                                                                                  /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/actions.rb:41: warning: already initialized constant Voice
                                                                                                          /etc/openhab/automation/ruby/.gem/10.0.2.0/gems/openhab-scripting-5.47.5/lib/openhab/core/value_cache.rb:12: warning: already initialized constant org.openhab.core.automation.module.script.rulesupport.shared::ValueCache

EDIT: I also put the JRUBY Bundle into debug and this was returned on reloading the single rule file

2026-04-23 14:53:18.002 [INFO ] [ort.loader.AbstractScriptFileWatcher] - (Re-)Loading script '/etc/openhab/automation/ruby/hasUiRefreshTimer.rb'
2026-04-23 14:53:20.106 [DEBUG] [ng.internal.JRubyScriptEngineFactory] - Scope Values: {se=org.openhab.core.automation.module.script.internal.ScriptExtensionManagerWrapperImpl@17c99a15, scriptExtension=org.openhab.core.automation.module.script.internal.ScriptExtensionManagerWrapperImpl@17c99a15}
2026-04-23 14:53:20.119 [DEBUG] [ng.internal.JRubyScriptEngineFactory] - Scope Values: {voice=org.openhab.core.voice.internal.VoiceManagerImpl@168300d8, ProwlActions=class org.openhab.binding.prowl.internal.action.ProwlActions, DOWN=DOWN, SendMailActions=class org.openhab.binding.mail.internal.action.SendMailActions, StringType=class org.openhab.core.library.types.StringType, rules=org.openhab.core.automation.internal.RuleRegistryImpl@77b6b0d2, NextPreviousType=class org.openhab.core.library.types.NextPreviousType, PLAY=PLAY, Month=class java.time.Month, ImperialUnits=class org.openhab.core.library.unit.ImperialUnits, ZonedDateTime=class java.time.ZonedDateTime, INCREASE=INCREASE, OpenClosedType=class org.openhab.core.library.types.OpenClosedType, things=org.openhab.core.thing.internal.ThingRegistryImpl@4926f34d, UP=UP, RawType=class org.openhab.core.library.types.RawType, MatterControllerActions=class org.openhab.binding.matter.internal.actions.MatterControllerActions, StringListType=class org.openhab.core.library.types.StringListType, events=org.openhab.core.automation.module.script.internal.action.BusEventImpl@201a2cba, ChromecastActions=class org.openhab.binding.chromecast.internal.action.ChromecastActions, SIUnits=class org.openhab.core.library.unit.SIUnits, itemRegistry=org.openhab.core.internal.items.ItemRegistryImpl@2e117da1, NULL=NULL, STOP=STOP, UnDefType=class org.openhab.core.types.UnDefType, ir=org.openhab.core.internal.items.ItemRegistryImpl@2e117da1, Duration=class java.time.Duration, RefreshType=class org.openhab.core.types.RefreshType, Units=class org.openhab.core.library.unit.Units, RewindFastforwardType=class org.openhab.core.library.types.RewindFastforwardType, DateTimeType=class org.openhab.core.library.types.DateTimeType, QuantityType=class org.openhab.core.library.types.QuantityType, State=interface org.openhab.core.types.State, PushoverActions=class org.openhab.binding.pushover.internal.actions.PushoverActions, DecimalType=class org.openhab.core.library.types.DecimalType, IncreaseDecreaseType=class org.openhab.core.library.types.IncreaseDecreaseType, BinaryPrefix=class org.openhab.core.library.unit.BinaryPrefix, File=class java.io.File, items=org.openhab.core.automation.module.script.internal.defaultscope.ItemRegistryDelegate@6c636891, actions=org.openhab.core.automation.module.script.internal.defaultscope.ScriptThingActionsImpl@122142cb, LGWebOSActions=class org.openhab.binding.lgwebos.internal.action.LGWebOSActions, IpCameraActions=class org.openhab.binding.ipcamera.internal.IpCameraActions, CLOSED=CLOSED, REFRESH=REFRESH, MetricPrefix=class org.openhab.core.library.unit.MetricPrefix, DECREASE=DECREASE, StopMoveType=class org.openhab.core.library.types.StopMoveType, OFF=OFF, PREVIOUS=PREVIOUS, PAUSE=PAUSE, NEXT=NEXT, REWIND=REWIND, Paths=class java.nio.file.Paths, audio=org.openhab.core.audio.internal.AudioManagerImpl@632fd3c9, URLEncoder=class java.net.URLEncoder, Files=class java.nio.file.Files, HSBType=class org.openhab.core.library.types.HSBType, MatterNodeActions=class org.openhab.binding.matter.internal.actions.MatterNodeActions, ON=ON, Path=interface java.nio.file.Path, DayOfWeek=class java.time.DayOfWeek, ZoneId=class java.time.ZoneId, DynamicsActions=class org.openhab.binding.hue.internal.action.DynamicsActions, UpDownType=class org.openhab.core.library.types.UpDownType, PercentType=class org.openhab.core.library.types.PercentType, AstroActions=class org.openhab.binding.astro.internal.action.AstroActions, OPEN=OPEN, MQTTActions=class org.openhab.binding.mqtt.internal.action.MQTTActions, SolarForecastActions=class org.openhab.binding.solarforecast.internal.actions.SolarForecastActions, NetworkActions=class org.openhab.binding.network.internal.action.NetworkActions, MOVE=MOVE, OnOffType=class org.openhab.core.library.types.OnOffType, Command=interface org.openhab.core.types.Command, lifecycleTracker=org.openhab.core.automation.module.script.LifecycleScriptExtensionProvider$LifecycleTracker@2b0b7a27, PlayPauseType=class org.openhab.core.library.types.PlayPauseType, FASTFORWARD=FASTFORWARD, PointType=class org.openhab.core.library.types.PointType, UNDEF=UNDEF, MPDActions=class org.openhab.binding.mpd.internal.action.MPDActions, ChronoUnit=class java.time.temporal.ChronoUnit}

2026-04-23 14:53:20.297 [DEBUG] [ernal.JRubyScriptEngineConfiguration] - No Gemfile is found or configured. Skipping Bundler setup.

2026-04-23 14:53:22.976 [DEBUG] [ng.internal.JRubyScriptEngineFactory] - Scope Values: {privateCache=org.openhab.core.automation.module.script.rulesupport.internal.CacheScriptExtension$ValueCacheImpl@4ab6a846, sharedCache=org.openhab.core.automation.module.script.rulesupport.internal.CacheScriptExtension$TrackingValueCacheImpl@7d42524f}
2026-04-23 14:53:23.306 [DEBUG] [penhab.automation.jrubyscripting.dsl] - openHAB JRuby Scripting Library Version 5.47.5 Loaded

After the upgrade ran for a while, did you restart OH (without clearing cache)? I did not see that in your notes.

In karaf console, what’s the output of:

list -s | grep ruby

Did you see anything else other than ERROR: HANDLER, i.e. in the status info/detail?

Hi @apella12 - yes I did twice for other reasons and a reboot as well

Hi @jimtng

openhab> list -s | grep ruby
508 β”‚ Active β”‚ 80 β”‚ 5.1.4 β”‚ org.openhab.automation.jrubyscripting

And yes - i see this error (i had not drilled down before since its a file based rule

PS the UI Based Rules are running and this is very definitely a ruby file(see screenshot)

Status:

UNINITIALIZED

HANDLER_INITIALIZING_ERROR

Missing handler β€˜jsr223.ScriptedAction’ for module β€˜1’

PS I also get an error connection the the karaf console via openhab-cli console and have to connect via SSH to localhost port 8101

(excuse the screenshot but you can see its a ruby file from the top)

@jimtng adding to the above i checked and I still have a lot of bundles showing 5.1.3 and not sure if this is correct

I am tempted to try the upgrade again via sudo apt install openhab=5.1.4-1 again but will wait for advice.

TART LEVEL 100 , List Threshold: 50
 ID β”‚ State   β”‚ Lvl β”‚ Version               β”‚ Symbolic name
────┼─────────┼─────┼───────────────────────┼──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
 30 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.core.jackson-annotations
 31 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.core.jackson-core
 32 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.core.jackson-databind
 33 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.dataformat.jackson-dataformat-xml
 34 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.dataformat.jackson-dataformat-yaml
 35 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.datatype.jackson-datatype-jsr310
 36 β”‚ Active  β”‚  80 β”‚ 6.6.2                 β”‚ com.fasterxml.woodstox.woodstox-core
 37 β”‚ Active  β”‚  80 β”‚ 2.38.0                β”‚ com.google.errorprone.annotations
 38 β”‚ Active  β”‚  80 β”‚ 2.13.1                β”‚ com.google.gson
 39 β”‚ Active  β”‚  80 β”‚ 33.4.8.jre            β”‚ com.google.guava
 40 β”‚ Active  β”‚  80 β”‚ 1.0.3                 β”‚ com.google.guava.failureaccess
 41 β”‚ Active  β”‚  80 β”‚ 7.0.0                 β”‚ com.google.inject
 42 β”‚ Active  β”‚  80 β”‚ 5.17.0                β”‚ com.sun.jna
 44 β”‚ Active  β”‚  80 β”‚ 1.5.4                 β”‚ de.focus_shift.jollyday-core
 45 β”‚ Active  β”‚  80 β”‚ 1.5.4                 β”‚ de.focus_shift.jollyday-jackson
 46 β”‚ Active  β”‚  80 β”‚ 4.8.180               β”‚ io.github.classgraph.classgraph
 47 β”‚ Active  β”‚  80 β”‚ 0.19.1                β”‚ io.methvin.directory-watcher
 48 β”‚ Active  β”‚  80 β”‚ 2.2.35                β”‚ io.swagger.core.v3.swagger-annotations
 49 β”‚ Active  β”‚  80 β”‚ 2.2.35                β”‚ io.swagger.core.v3.swagger-core
 50 β”‚ Active  β”‚  80 β”‚ 2.2.35                β”‚ io.swagger.core.v3.swagger-integration
 51 β”‚ Active  β”‚  80 β”‚ 2.2.35                β”‚ io.swagger.core.v3.swagger-jaxrs2
 52 β”‚ Active  β”‚  80 β”‚ 2.2.35                β”‚ io.swagger.core.v3.swagger-models
 53 β”‚ Active  β”‚  80 β”‚ 2.1.1                 β”‚ jakarta.annotation-api
 54 β”‚ Active  β”‚  80 β”‚ 2.0.1                 β”‚ jakarta.inject.jakarta.inject-api
 56 β”‚ Active  β”‚  80 β”‚ 2.0.2                 β”‚ jakarta.validation.jakarta.validation-api
 58 β”‚ Active  β”‚  80 β”‚ 2.3.3                 β”‚ jakarta.xml.ws-api
 59 β”‚ Active  β”‚  80 β”‚ 3.6.2                 β”‚ javax.jmdns
 60 β”‚ Active  β”‚  80 β”‚ 2.2.0                 β”‚ javax.measure.unit-api
 62 β”‚ Active  β”‚  80 β”‚ 3.2.0.v201101311130   β”‚ org.antlr.runtime
 63 β”‚ Active  β”‚  80 β”‚ 1.0.0.v201105210816   β”‚ org.aopalliance
 64 β”‚ Active  β”‚  80 β”‚ 1.2.2                 β”‚ org.apache.aries.component-dsl.component-dsl
 65 β”‚ Active  β”‚  80 β”‚ 1.0.4                 β”‚ org.apache.aries.javax.jax.rs-api
 66 β”‚ Active  β”‚  80 β”‚ 2.0.2                 β”‚ org.apache.aries.jax.rs.whiteboard
 68 β”‚ Active  β”‚  80 β”‚ 3.18.0                β”‚ org.apache.commons.lang3
 69 β”‚ Active  β”‚  80 β”‚ 3.6.8                 β”‚ org.apache.cxf.cxf-core
 70 β”‚ Active  β”‚  80 β”‚ 3.6.8                 β”‚ org.apache.cxf.cxf-rt-frontend-jaxrs
 71 β”‚ Active  β”‚  80 β”‚ 3.6.8                 β”‚ org.apache.cxf.cxf-rt-rs-client
 72 β”‚ Active  β”‚  80 β”‚ 3.6.8                 β”‚ org.apache.cxf.cxf-rt-rs-sse
 73 β”‚ Active  β”‚  80 β”‚ 3.6.8                 β”‚ org.apache.cxf.cxf-rt-security
 74 β”‚ Active  β”‚  80 β”‚ 3.6.8                 β”‚ org.apache.cxf.cxf-rt-transports-http
 81 β”‚ Active  β”‚  80 β”‚ 4.4.8                 β”‚ org.apache.karaf.event
 97 β”‚ Active  β”‚  80 β”‚ 2.3.1                 β”‚ org.apache.ws.xmlschema.core
 98 β”‚ Active  β”‚  80 β”‚ 1.1.2                 β”‚ org.apiguardian.api
 99 β”‚ Active  β”‚  80 β”‚ 0.9.6                 β”‚ org.bitbucket.b_c.jose4j
100 β”‚ Active  β”‚  80 β”‚ 2.30.0.v20231210-0956 β”‚ org.eclipse.emf.common
101 β”‚ Active  β”‚  80 β”‚ 2.36.0.v20240203-0859 β”‚ org.eclipse.emf.ecore
102 β”‚ Active  β”‚  80 β”‚ 2.16.0.v20231208-1346 β”‚ org.eclipse.emf.ecore.change
103 β”‚ Active  β”‚  80 β”‚ 2.37.0.v20231208-1346 β”‚ org.eclipse.emf.ecore.xmi
104 β”‚ Active  β”‚  80 β”‚ 3.19.0.v20240214-0846 β”‚ org.eclipse.equinox.common
138 β”‚ Active  β”‚  80 β”‚ 0.24.0.v20250131-1745 β”‚ org.eclipse.lsp4j
139 β”‚ Active  β”‚  80 β”‚ 0.24.0.v20250131-1745 β”‚ org.eclipse.lsp4j.jsonrpc
140 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtend.lib
141 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtend.lib.macro
142 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext
143 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext.common.types
144 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext.ide
145 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext.util
146 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext.xbase
147 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext.xbase.ide
148 β”‚ Active  β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ org.eclipse.xtext.xbase.lib
156 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core
157 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.addon
158 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.addon.marketplace
159 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.addon.marketplace.karaf
160 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.audio
161 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.auth.jaas
162 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.auth.oauth2client
163 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.automation
164 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.automation.module.media
165 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.automation.module.script
166 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.automation.module.script.providersupport
167 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.automation.module.script.rulesupport
168 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.automation.rest
169 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.core
170 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery
171 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon
172 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon.process
173 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.mdns
174 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.dispatch
175 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.ephemeris
176 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.id
177 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.console
178 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.console.karaf
179 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.http
180 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.http.auth
182 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.monitor
183 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.net
184 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest
185 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.audio
186 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.auth
187 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.core
188 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.mdns
189 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.sitemap
190 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.sse
191 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.swagger
192 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.transform
193 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.ui
194 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.rest.voice
195 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.mdns
196 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.websocket
197 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.websocket.audio
198 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.karaf
199 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.core
200 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.item
201 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.item.ide
202 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.item.runtime
203 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.lsp
204 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.persistence
205 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.persistence.ide
206 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.persistence.runtime
207 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.rule
208 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.rule.ide
209 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.rule.runtime
210 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.script
211 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.script.ide
212 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.script.runtime
213 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.sitemap
214 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.sitemap.ide
215 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.sitemap.runtime
216 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.thing
217 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.thing.ide
218 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.thing.runtime
219 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.model.yaml
220 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.persistence
221 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.semantics
222 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.storage.json
223 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.thing
224 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.transform
225 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.ui
226 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.ui.icon
227 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.voice
228 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.ui
229 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.ui.iconset.classic
239 β”‚ Active  β”‚  80 β”‚ 1.5.1.202212101352    β”‚ org.osgi.service.component.annotations
240 β”‚ Active  β”‚  80 β”‚ 1.0.1.202109301733    β”‚ org.osgi.service.jaxrs
241 β”‚ Active  β”‚  80 β”‚ 1.8.0                 β”‚ org.threeten.extra
242 β”‚ Active  β”‚  80 β”‚ 2.4.0                 β”‚ org.yaml.snakeyaml
243 β”‚ Active  β”‚  80 β”‚ 2.2.3                 β”‚ si-quantity
244 β”‚ Active  β”‚  80 β”‚ 2.2.3                 β”‚ si-units
245 β”‚ Active  β”‚  80 β”‚ 4.2.2                 β”‚ stax2-api
246 β”‚ Active  β”‚  80 β”‚ 2.2.3                 β”‚ tech.units.indriya
247 β”‚ Active  β”‚  80 β”‚ 2.2.0                 β”‚ uom-lib-common
248 β”‚ Active  β”‚  80 β”‚ 1.4.21                β”‚ xstream
250 β”‚ Active  β”‚  80 β”‚ 0.3.2                 β”‚ bluez-dbus-osgi
251 β”‚ Active  β”‚  80 β”‚ 2.3.2                 β”‚ ch.obermuhlner.math.big
252 β”‚ Active  β”‚  80 β”‚ 2.19.2                β”‚ com.fasterxml.jackson.datatype.jackson-datatype-jdk8
253 β”‚ Active  β”‚  80 β”‚ 2.42                  β”‚ com.google.dagger
254 β”‚ Active  β”‚  80 β”‚ 1.2                   β”‚ com.google.re2j.re2j
255 β”‚ Active  β”‚  80 β”‚ 1.3.9                 β”‚ com.hivemq.client.mqtt
256 β”‚ Active  β”‚  80 β”‚ 1.9                   β”‚ com.hubspot.immutables.immutables-exceptions
257 β”‚ Active  β”‚  80 β”‚ 2.7.4                 β”‚ com.hubspot.jinjava.jinjava
258 β”‚ Active  β”‚  80 β”‚ 5.17.0                β”‚ com.sun.jna.platform
259 β”‚ Active  β”‚  80 β”‚ 1.6.2                 β”‚ com.sun.mail.javax.mail
260 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.buffer
261 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.codec
262 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.codec-http
263 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.codec-socks
264 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.common
265 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.handler
266 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.handler-proxy
267 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.resolver
268 β”‚ Active  β”‚  80 β”‚ 2.0.70.Final          β”‚ io.netty.tcnative-classes
269 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.transport
270 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.transport-classes-epoll
271 β”‚ Active  β”‚  80 β”‚ 4.1.126.Final         β”‚ io.netty.transport-native-unix-common
272 β”‚ Active  β”‚  80 β”‚ 2.2.21                β”‚ io.reactivex.rxjava2.rxjava
273 β”‚ Active  β”‚  80 β”‚ 1.0.1                 β”‚ io.socket.engine.io-client
274 β”‚ Active  β”‚  80 β”‚ 1.0.1                 β”‚ io.socket.socket.io-client
275 β”‚ Active  β”‚  80 β”‚ 1.0.5                 β”‚ jakarta.inject.jakarta.inject-api
276 β”‚ Active  β”‚  80 β”‚ 3.30.2.GA             β”‚ javassist
277 β”‚ Active  β”‚  80 β”‚ 20231013.0.0          β”‚ json
278 β”‚ Active  β”‚  80 β”‚ 1.1.0                 β”‚ jxmpp-core
279 β”‚ Active  β”‚  80 β”‚ 1.1.0                 β”‚ jxmpp-jid
280 β”‚ Active  β”‚  80 β”‚ 1.1.0                 β”‚ jxmpp-util-cache
281 β”‚ Active  β”‚  80 β”‚ 1.1.1                 β”‚ minidns-core
282 β”‚ Active  β”‚  80 β”‚ 5.2.1.OH1             β”‚ nrjavaserial
283 β”‚ Active  β”‚  80 β”‚ 2.20.0                β”‚ org.apache.commons.commons-io
284 β”‚ Active  β”‚  80 β”‚ 3.12.0                β”‚ org.apache.commons.commons-net
285 β”‚ Active  β”‚  80 β”‚ 1.9.3                 β”‚ org.apache.opennlp.tools
286 β”‚ Active  β”‚  80 β”‚ 3.8.1.1               β”‚ org.apache.servicemix.bundles.okhttp
287 β”‚ Active  β”‚  80 β”‚ 1.13.0.1              β”‚ org.apache.servicemix.bundles.okio
288 β”‚ Active  β”‚  80 β”‚ 2.3.0                 β”‚ org.apache.velocity.engine-core
289 β”‚ Active  β”‚  78 β”‚ 25.0.1                β”‚ org.graalvm.js.js-language
290 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.js.js-scriptengine
291 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.polyglot.polyglot
292 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.python.python-embedding
293 β”‚ Active  β”‚  78 β”‚ 25.0.1                β”‚ org.graalvm.python.python-language
294 β”‚ Active  β”‚  78 β”‚ 25.0.1                β”‚ org.graalvm.python.python-resources
295 β”‚ Active  β”‚  78 β”‚ 25.0.1                β”‚ org.graalvm.regex.regex
296 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.sdk.collections
297 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.sdk.nativeimage
298 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.sdk.word
299 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.shadowed.icu4j
300 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.shadowed.json
301 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.shadowed.xz
302 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.tools.profiler-tool
303 β”‚ Active  β”‚  79 β”‚ 25.0.1                β”‚ org.graalvm.truffle.truffle-api
304 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.truffle.truffle-compiler
305 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.truffle.truffle-nfi
306 β”‚ Active  β”‚  80 β”‚ 25.0.1                β”‚ org.graalvm.truffle.truffle-runtime
307 β”‚ Active  β”‚  80 β”‚ 0.2                   β”‚ org.hsluv.hsluv
308 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ org.igniterealtime.smack.smack-core
309 β”‚ Active  β”‚  80 β”‚ 2.1.2                 β”‚ org.jctools.core
310 β”‚ Active  β”‚  80 β”‚ 1.14.3                β”‚ org.jsoup
311 β”‚ Active  β”‚  80 β”‚ 3.0.4                 β”‚ org.jupnp
313 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.automation.jsscripting
314 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.airquality
315 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.amazonechocontrol
316 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.androiddebugbridge
317 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.androidtv
318 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.astro
319 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth
320 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.airthings
321 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.am43
322 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.bluegiga
323 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.bluez
324 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.blukii
325 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.daikinmadoka
326 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.enoceanble
327 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.generic
328 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.govee
329 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.grundfosalpha
330 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.hdpowerview
331 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.listener
332 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.radoneye
333 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.roaming
334 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.bluetooth.ruuvitag
335 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.chatgpt
336 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.chromecast
337 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.dlinksmarthome
338 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.entsoe
339 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.ephemeris
340 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.evcc
341 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.exec
342 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.freecurrency
343 β”‚ Active  β”‚  81 β”‚ 5.1.4                 β”‚ org.openhab.binding.homeassistant
344 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.homekit
345 β”‚ Active  β”‚  81 β”‚ 5.1.4                 β”‚ org.openhab.binding.homie
346 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.hpprinter
347 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.http
348 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.hue
349 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.huesync
350 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.icalendar
351 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.ipcamera
352 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.ipp
353 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.kodi
354 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.kostalinverter
355 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.lgwebos
356 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.logreader
357 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.mail
358 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.matter
359 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus
360 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.e3dc
361 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.foxinverter
362 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.helioseasycontrols
363 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.kermi
364 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.lambda
365 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.sbc
366 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.stiebeleltron
367 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.studer
368 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.sungrow
369 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.modbus.sunspec
370 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.mpd
371 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.mqtt
372 β”‚ Active  β”‚  81 β”‚ 5.1.4                 β”‚ org.openhab.binding.mqtt.awtrixlight
373 β”‚ Active  β”‚  81 β”‚ 5.1.4                 β”‚ org.openhab.binding.mqtt.espmilighthub
374 β”‚ Active  β”‚  81 β”‚ 5.1.4                 β”‚ org.openhab.binding.mqtt.fpp
375 β”‚ Active  β”‚  81 β”‚ 5.1.4                 β”‚ org.openhab.binding.mqtt.ruuvigateway
376 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.netatmo
377 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.network
378 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.networkupstools
379 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.openuv
380 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.openweathermap
381 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.prowl
382 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.pushover
383 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.snmp
384 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.solarforecast
385 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.solarlog
386 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.speedtest
387 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.systeminfo
388 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.tapocontrol
389 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.tasmotaplug
390 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.tuya
391 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.upnpcontrol
392 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.weathercompany
393 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.weatherunderground
394 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.xmppclient
395 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon.ip
396 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon.mdns
397 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon.sddp
398 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon.upnp
399 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.addon.usb
400 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.sddp
401 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.upnp
402 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.usbserial
403 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.usbserial.linuxsysfs
404 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.usbserial.ser2net
405 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.discovery.usbserial.windowsregistry
406 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.config.serial
407 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.modbus
408 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.mqtt
409 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.serial
410 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.serial.rxtx
411 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.serial.rxtx.rfc2217
412 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.core.io.transport.upnp
413 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.io.homekit
414 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.io.metrics
415 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.io.openhabcloud
416 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.persistence.inmemory
417 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.persistence.mapdb
418 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.persistence.rrd4j
419 β”‚ Active  β”‚  75 β”‚ 5.1.4                 β”‚ org.openhab.transform.basicprofiles
420 β”‚ Active  β”‚  75 β”‚ 5.1.4                 β”‚ org.openhab.transform.jinja
421 β”‚ Active  β”‚  75 β”‚ 5.1.4                 β”‚ org.openhab.transform.jsonpath
422 β”‚ Active  β”‚  75 β”‚ 5.1.4                 β”‚ org.openhab.transform.map
423 β”‚ Active  β”‚  75 β”‚ 5.1.4                 β”‚ org.openhab.transform.regex
424 β”‚ Active  β”‚  75 β”‚ 5.1.4                 β”‚ org.openhab.transform.xpath
425 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.ui.basic
426 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.ui.cometvisu
427 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.ui.habot
428 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.ui.habpanel
429 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.voice.voicerss
430 β”‚ Active  β”‚  80 β”‚ 1.0.4                 β”‚ reactive-streams
431 β”‚ Active  β”‚  80 β”‚ 3.8.2                 β”‚ rrd4j
432 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-experimental
433 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-extensions
434 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-im
435 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-java11
436 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-resolver-javax
437 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-sasl-javax
438 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-streammanagement
439 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-tcp
440 β”‚ Active  β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-xmlparser
441 β”‚ Active  β”‚  80 β”‚ 5.1.3.20260416        β”‚ org.openhab.binding.ddwrt
442 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core
443 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.addon
444 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.addon.marketplace
445 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.addon.marketplace.karaf
446 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.audio
447 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.auth.jaas
448 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.auth.oauth2client
449 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.automation
450 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.automation.module.media
451 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.automation.module.script
452 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.automation.module.script.providersupport
453 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.automation.module.script.rulesupport
454 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.core
455 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery
456 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.addon.process
457 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.mdns
458 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.sddp
459 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.upnp
460 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.usbserial
461 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.usbserial.linuxsysfs
462 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.usbserial.ser2net
463 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.discovery.usbserial.windowsregistry
464 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.dispatch
465 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.config.serial
466 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.ephemeris
467 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.id
468 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.console
469 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.http
470 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.http.auth
471 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.monitor
472 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.net
473 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.rest
474 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.rest.core
475 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.rest.sitemap
476 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.rest.sse
477 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.rest.ui
478 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.transport.mdns
479 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.transport.serial
480 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.transport.serial.rxtx
481 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.transport.serial.rxtx.rfc2217
482 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.transport.upnp
483 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.websocket
484 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.io.websocket.audio
485 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.karaf
486 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.item
487 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.item.runtime
488 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.persistence
489 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.persistence.runtime
490 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.rule
491 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.rule.runtime
492 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.script
493 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.script.runtime
494 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.sitemap
495 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.sitemap.runtime
496 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.thing
497 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.thing.runtime
498 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.model.yaml
499 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.persistence
500 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.semantics
501 β”‚ Waiting β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.thing
502 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.transform
503 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.ui
504 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.ui.icon
505 β”‚ Active  β”‚  80 β”‚ 5.1.3                 β”‚ org.openhab.core.voice
508 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.automation.jrubyscripting
509 β”‚ Active  β”‚  80 β”‚ 5.1.4                 β”‚ org.openhab.binding.icloud

Not the expert like @jimtng , but can’t imagine anything good can happen with many duplicate bundles, even if they all aren’t active. I use docker containers and there is a clean-cache prior to upgrade. It does cause issues on the initial start-up because all the bundles need to be reuploaded (solved by restarting), but I never have had duplicates.

Hi @apella12 & @jimtng

thanks for the guidance.

I downgraded to 5.1.3 waited for 5 mins stopped and restarted 5.1.3 and the waited 2mins and upgraded again to 514 and all my file based rules are working - no more 5.1.3 items anymore in list -s very strange but all seems ok now and will monitor

Hi All

So the system ran fine but i need to reboot for and unrelated reason (change UPS Battery) and when after the system came up it was not responsive

I checked the bundles onboard the karaf console again and it appears that my system is a mix of a 5.1.3 and 5.1.4 system

I attempted to remove the 5.1.3 bundles but on a followup openHAB process restart they all re-appeared

I have a backup of openhabian so a re- install (from openhabian image) and restore the backup is my next option unless anyone can give me any advice

openhab> bundle:list
START LEVEL 100 , List Threshold: 50
 ID β”‚ State    β”‚ Lvl β”‚ Version               β”‚ Name
────┼──────────┼─────┼───────────────────────┼───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
 30 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ Jackson-annotations
 31 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ Jackson-core
 32 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ jackson-databind
 33 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ Jackson-dataformat-XML
 34 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ Jackson-dataformat-YAML
 35 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ Jackson datatype: JSR310
 36 β”‚ Active   β”‚  80 β”‚ 6.6.2                 β”‚ Woodstox
 37 β”‚ Active   β”‚  80 β”‚ 2.38.0                β”‚ error-prone annotations
 38 β”‚ Active   β”‚  80 β”‚ 2.13.1                β”‚ Gson
 39 β”‚ Active   β”‚  80 β”‚ 33.4.8.jre            β”‚ Guava: Google Core Libraries for Java
 40 β”‚ Active   β”‚  80 β”‚ 1.0.3                 β”‚ Guava InternalFutureFailureAccess and InternalFutures
 41 β”‚ Active   β”‚  80 β”‚ 7.0.0                 β”‚ guice
 42 β”‚ Active   β”‚  80 β”‚ 5.17.0                β”‚ jna
 44 β”‚ Active   β”‚  80 β”‚ 1.5.4                 β”‚ Jollyday Core
 45 β”‚ Active   β”‚  80 β”‚ 1.5.4                 β”‚ Jollyday with Jackson
 46 β”‚ Active   β”‚  80 β”‚ 4.8.180               β”‚ ClassGraph
 47 β”‚ Active   β”‚  80 β”‚ 0.19.1                β”‚ Directory-Watcher
 48 β”‚ Active   β”‚  80 β”‚ 2.2.35                β”‚ swagger-annotations
 49 β”‚ Active   β”‚  80 β”‚ 2.2.35                β”‚ swagger-core
 50 β”‚ Active   β”‚  80 β”‚ 2.2.35                β”‚ swagger-integration
 51 β”‚ Active   β”‚  80 β”‚ 2.2.35                β”‚ swagger-jaxrs2
 52 β”‚ Active   β”‚  80 β”‚ 2.2.35                β”‚ swagger-models
 53 β”‚ Active   β”‚  80 β”‚ 2.1.1                 β”‚ Jakarta Annotations API
 54 β”‚ Active   β”‚  80 β”‚ 2.0.1                 β”‚ Jakarta Dependency Injection
 56 β”‚ Active   β”‚  80 β”‚ 2.0.2                 β”‚ Jakarta Bean Validation API
 58 β”‚ Active   β”‚  80 β”‚ 2.3.3                 β”‚ Jakarta XML Web Services API
 59 β”‚ Active   β”‚  80 β”‚ 3.6.2                 β”‚ JmDNS
 60 β”‚ Active   β”‚  80 β”‚ 2.2.0                 β”‚ Units of Measurement API
 62 β”‚ Active   β”‚  80 β”‚ 3.2.0.v201101311130   β”‚ ANTLR Runtime
 63 β”‚ Active   β”‚  80 β”‚ 1.0.0.v201105210816   β”‚ Aopalliance Plug-in
 64 β”‚ Active   β”‚  80 β”‚ 1.2.2                 β”‚ org.apache.aries.component-dsl.component-dsl
 65 β”‚ Active   β”‚  80 β”‚ 1.0.4                 β”‚ Apache Aries JAX-RS Specification API
 66 β”‚ Active   β”‚  80 β”‚ 2.0.2                 β”‚ Apache Aries JAX-RS Whiteboard
 68 β”‚ Active   β”‚  80 β”‚ 3.18.0                β”‚ Apache Commons Lang
 69 β”‚ Active   β”‚  80 β”‚ 3.6.8                 β”‚ Apache CXF Core
 70 β”‚ Active   β”‚  80 β”‚ 3.6.8                 β”‚ Apache CXF Runtime JAX-RS Frontend
 71 β”‚ Active   β”‚  80 β”‚ 3.6.8                 β”‚ Apache CXF JAX-RS Client
 72 β”‚ Active   β”‚  80 β”‚ 3.6.8                 β”‚ Apache CXF JAX-RS Server-Side Events Support
 73 β”‚ Active   β”‚  80 β”‚ 3.6.8                 β”‚ Apache CXF Runtime Security functionality
 74 β”‚ Active   β”‚  80 β”‚ 3.6.8                 β”‚ Apache CXF Runtime HTTP Transport
 81 β”‚ Active   β”‚  80 β”‚ 4.4.8                 β”‚ Apache Karaf :: OSGi Services :: Event
 97 β”‚ Active   β”‚  80 β”‚ 2.3.1                 β”‚ XmlSchema Core
 98 β”‚ Active   β”‚  80 β”‚ 1.1.2                 β”‚ apiguardian-api
 99 β”‚ Active   β”‚  80 β”‚ 0.9.6                 β”‚ jose4j
100 β”‚ Active   β”‚  80 β”‚ 2.30.0.v20231210-0956 β”‚ EMF Common
101 β”‚ Active   β”‚  80 β”‚ 2.36.0.v20240203-0859 β”‚ EMF Ecore
102 β”‚ Active   β”‚  80 β”‚ 2.16.0.v20231208-1346 β”‚ EMF Change Model
103 β”‚ Active   β”‚  80 β”‚ 2.37.0.v20231208-1346 β”‚ EMF XML/XMI Persistence
104 β”‚ Active   β”‚  80 β”‚ 3.19.0.v20240214-0846 β”‚ Common Eclipse Runtime
138 β”‚ Active   β”‚  80 β”‚ 0.24.0.v20250131-1745 β”‚ org.eclipse.lsp4j
139 β”‚ Active   β”‚  80 β”‚ 0.24.0.v20250131-1745 β”‚ org.eclipse.lsp4j.jsonrpc
140 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xtend Runtime Library
141 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xtend Macro Interfaces
142 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xtext
143 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xtext Common Types
144 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xtext IDE Core
145 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xtext Utility
146 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xbase Model
147 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xbase Generic IDE Services
148 β”‚ Active   β”‚  80 β”‚ 2.40.0.v20250825-0355 β”‚ Xbase Runtime Library
156 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Core
157 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Add-on XML
158 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Marketplace Add-on Services
159 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Community Marketplace Add-on Service :: Karaf
160 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Audio
161 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: JAAS Authentication
162 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: OAuth2Client
163 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Automation
164 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Automation Media Modules
165 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Automation Script Modules
166 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Automation Script ProviderSupport
167 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Automation Script RuleSupport
168 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Automation REST API
169 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration Core
170 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration Discovery
171 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Add-on Suggestion Service
172 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Process-based Suggested Add-on Finder
173 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration mDNS Discovery
174 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration Dispatcher
175 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Ephemeris
176 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: ID
177 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Console
178 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Console for OSGi runtime Karaf
179 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: HTTP Interface
180 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: HTTP Interface Authentication
182 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Monitor
183 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Network I/O
184 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: REST Interface
185 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Audio REST Interface
186 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Authentication Support for the REST Interface
187 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: REST Interface :: Core
188 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: REST mDNS Announcer
189 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Sitemap REST Interface
190 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: SSE Interface
191 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: REST Interface :: Swagger 1
192 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Transformation REST Interface
193 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: UI REST Interface
194 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Voice REST Interface
195 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: mDNS Service
196 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: WebSocket
197 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Audio PCM Websocket Interface
198 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Karaf Integration
199 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Core
200 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Items
201 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Item IDE
202 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Items Runtime
203 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Language Server
204 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Persistence
205 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Persistence IDE
206 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Persistence Runtime
207 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Rules
208 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Rule IDE
209 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Rules Runtime
210 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Script
211 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Script IDE
212 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Script Runtime
213 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Sitemap
214 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Sitemap IDE
215 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Sitemap Runtime
216 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Thing
217 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Thing IDE
218 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model Thing Runtime
219 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Model YAML
220 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Persistence
221 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Semantics
222 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: JSON Storage
223 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Thing
224 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Transformation Service
225 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: UI
226 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: UI Icon Support
227 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Voice
228 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB UI :: Bundles :: Main UI
229 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB UI :: Bundles :: Icon Set :: Classic
239 β”‚ Active   β”‚  80 β”‚ 1.5.1.202212101352    β”‚ org.osgi:org.osgi.service.component.annotations
240 β”‚ Active   β”‚  80 β”‚ 1.0.1.202109301733    β”‚ org.osgi:org.osgi.service.jaxrs
241 β”‚ Active   β”‚  80 β”‚ 1.8.0                 β”‚ ThreeTen-Extra
242 β”‚ Active   β”‚  80 β”‚ 2.4.0                 β”‚ SnakeYAML
243 β”‚ Active   β”‚  80 β”‚ 2.2.3                 β”‚ SI Quantity
244 β”‚ Active   β”‚  80 β”‚ 2.2.3                 β”‚ SI Units
245 β”‚ Active   β”‚  80 β”‚ 4.2.2                 β”‚ Stax2 API
246 β”‚ Active   β”‚  80 β”‚ 2.2.3                 β”‚ Units of Measurement Reference Implementation
247 β”‚ Active   β”‚  80 β”‚ 2.2.0                 β”‚ Units of Measurement Common Library for Java
248 β”‚ Active   β”‚  80 β”‚ 1.4.21                β”‚ XStream Core
305 β”‚ Active   β”‚  80 β”‚ 0.3.2                 β”‚ bluez-dbus-osgi
306 β”‚ Active   β”‚  80 β”‚ 2.3.2                 β”‚ big-math
307 β”‚ Active   β”‚  80 β”‚ 2.19.2                β”‚ Jackson datatype: jdk8
308 β”‚ Active   β”‚  80 β”‚ 2.42                  β”‚ Dagger
309 β”‚ Active   β”‚  80 β”‚ 1.2                   β”‚ RE2/J
310 β”‚ Active   β”‚  80 β”‚ 1.3.9                 β”‚ hivemq-mqtt-client
311 β”‚ Active   β”‚  80 β”‚ 1.9                   β”‚ Immutables Exceptions
312 β”‚ Active   β”‚  80 β”‚ 2.7.4                 β”‚ Jinjava
313 β”‚ Active   β”‚  80 β”‚ 5.17.0                β”‚ jna-platform
314 β”‚ Active   β”‚  80 β”‚ 1.6.2                 β”‚ JavaMail API
315 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Buffer
316 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Codec
317 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Codec/HTTP
318 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Codec/Socks
319 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Common
320 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Handler
321 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Handler/Proxy
322 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Resolver
323 β”‚ Active   β”‚  80 β”‚ 2.0.70.Final          β”‚ Netty/TomcatNative [OpenSSL - Classes]
324 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Transport
325 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Transport/Classes/Epoll
326 β”‚ Active   β”‚  80 β”‚ 4.1.126.Final         β”‚ Netty/Transport/Native/Unix/Common
327 β”‚ Active   β”‚  80 β”‚ 2.2.21                β”‚ rxjava
328 β”‚ Active   β”‚  80 β”‚ 1.0.1                 β”‚ IO.Socket Engine Client
329 β”‚ Active   β”‚  80 β”‚ 1.0.1                 β”‚ IO.Socket Socket Client
330 β”‚ Active   β”‚  80 β”‚ 1.0.5                 β”‚ Jakarta Dependency Injection
331 β”‚ Active   β”‚  80 β”‚ 3.30.2.GA             β”‚ Javassist
332 β”‚ Active   β”‚  80 β”‚ 20231013.0.0          β”‚ JSON in Java
333 β”‚ Active   β”‚  80 β”‚ 1.1.0                 β”‚ jxmpp-core
334 β”‚ Active   β”‚  80 β”‚ 1.1.0                 β”‚ jxmpp-jid
335 β”‚ Active   β”‚  80 β”‚ 1.1.0                 β”‚ jxmpp-util-cache
336 β”‚ Active   β”‚  80 β”‚ 1.1.1                 β”‚ minidns-core
337 β”‚ Active   β”‚  80 β”‚ 5.2.1.OH1             β”‚ nrjavaserial
338 β”‚ Active   β”‚  80 β”‚ 2.20.0                β”‚ Apache Commons IO
339 β”‚ Active   β”‚  80 β”‚ 3.12.0                β”‚ Apache Commons Net
340 β”‚ Active   β”‚  80 β”‚ 1.9.3                 β”‚ Apache OpenNLP Tools
341 β”‚ Active   β”‚  80 β”‚ 3.8.1.1               β”‚ Apache ServiceMix :: Bundles :: okhttp
342 β”‚ Active   β”‚  80 β”‚ 1.13.0.1              β”‚ Apache ServiceMix :: Bundles :: okio
343 β”‚ Active   β”‚  80 β”‚ 2.3.0                 β”‚ Apache Velocity - Engine
346 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Polyglot :: Polyglot
347 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Python :: Embedding
348 β”‚ Active   β”‚  78 β”‚ 25.0.1                β”‚ GraalVM :: Python :: Language
349 β”‚ Active   β”‚  78 β”‚ 25.0.1                β”‚ GraalVM :: Python :: Resources
350 β”‚ Active   β”‚  78 β”‚ 25.0.1                β”‚ GraalVM :: Regex :: TRegex
351 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: SDK :: Collections
352 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: SDK :: Native Image
353 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: SDK :: Word
354 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: ICU4J
355 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: JSON
356 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: XZ
357 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Tools :: Profiler
358 β”‚ Active   β”‚  79 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: API
359 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: Compiler
360 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: NFI
361 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: Truffle :: Runtime
362 β”‚ Active   β”‚  80 β”‚ 0.2                   β”‚ hsluv
364 β”‚ Active   β”‚  80 β”‚ 2.1.2                 β”‚ Java Concurrency Tools Core Library
365 β”‚ Active   β”‚  80 β”‚ 1.14.3                β”‚ jsoup Java HTML Parser
366 β”‚ Active   β”‚  80 β”‚ 3.0.4                 β”‚ jUPnP Core Library
367 β”‚ Waiting  β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Automation :: JRuby Scripting
369 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Airquality Binding
370 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Amazon Echo Control Binding
371 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Android Debug Bridge Binding
372 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: AndroidTV Binding
373 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Astro Binding
374 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Bluetooth Binding
375 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Airthings Bluetooth Adapter
376 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: AM43 Bluetooth Adapter
377 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: BlueGiga Bluetooth Adapter
378 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: BlueZ Bluetooth Adapter
379 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Blukii Bluetooth Adapter
380 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: DaikinMadoka Bluetooth Adapter
381 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: EnOcean Bluetooth Adapter
382 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Generic Bluetooth Adapter
383 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Govee Bluetooth Adapter
384 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Grundfos Alpha Bluetooth Adapter
385 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: HD Powerview Bluetooth Adapter
386 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Bluetooth Listener Binding
387 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: RadonEye Bluetooth Adapter
388 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Roaming Bluetooth Adapter
389 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: RuuviTag Bluetooth Adapter
390 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: ChatGPT Binding
391 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Chromecast Binding
392 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: D-Link Smart Home Binding
393 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: ENTSO-E Binding
394 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Ephemeris Binding
395 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: evcc Binding
396 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Exec Binding
397 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Freecurrency Binding
398 β”‚ Active   β”‚  81 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Home Assistant Binding
399 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: HomeKit Client Binding
400 β”‚ Active   β”‚  81 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Homie Convention Binding
401 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: HP Printer Binding
402 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: HTTP Binding
403 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: hue Binding
404 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Hue Sync Box Binding
405 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: iCalendar Binding
406 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: iCloud Binding
407 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: IpCamera Binding
408 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: IPP Binding
409 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Kodi Binding
410 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Kostal Binding
411 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: LG webOS Binding
412 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Log Reader Binding
413 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Mail Binding
414 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Matter Binding
415 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Modbus Binding
416 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: E3DC Modbus Binding
417 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Modbus FoxInverter Binding
418 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: HeliosEasyControls Binding
419 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Kermi Modbus Binding
420 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Lambda Binding
421 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Modbus SBC Binding
422 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: StiebelEltron Bundle
423 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Studer Binding
424 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Modbus Sungrow Binding
425 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: SunSpec Bundle
426 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: MPD Binding
427 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: MQTT Broker Binding
428 β”‚ Active   β”‚  81 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: MQTT Awtrix 3
429 β”‚ Active   β”‚  81 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: MQTT EspMilightHub
430 β”‚ Active   β”‚  81 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: MQTT FPP
431 β”‚ Active   β”‚  81 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: MQTT Ruuvi Gateway
432 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Netatmo Binding
433 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Network Binding
434 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Network UPS Tools Binding
435 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: OpenUV Binding
436 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: OpenWeatherMap Binding
437 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Prowl Binding
438 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Pushover Binding
439 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: SNMP Binding
440 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: SolarForecast Binding
441 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Speedtest Binding
442 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: SystemInfo Binding
443 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: TapoControl Binding
444 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Tasmota Plug Binding
445 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Tuya Binding
446 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: UPnP Control Binding
447 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: WeatherCompany Binding
448 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: WeatherUnderground Binding
449 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: XMPPClient Binding
450 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: IP-based Suggested Add-on Finder
451 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: mDNS Suggested Add-on Finder
452 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: SDDP Suggested Add-on Finder
453 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: uPnP Suggested Add-on Finder
454 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: USB Suggested Add-on Finder
456 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration SDDP Discovery
458 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration UPnP Discovery
460 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery
462 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery for Linux using sysfs scanning
464 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery using ser2net mDNS scanning
466 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery for Windows
468 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Configuration Serial
469 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Modbus Transport
470 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: MQTT Transport
472 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Serial Transport
474 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Serial Transport for RXTX
476 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: Serial Transport for RFC2217
478 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Core :: Bundles :: UPnP Transport
479 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: IO :: Homekit
480 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: IO :: Metrics Service
481 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: IO :: openHAB Cloud Connector
482 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Persistence Service :: InMemory
483 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Persistence Service :: MapDB
484 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Persistence Service :: RRD4j
485 β”‚ Active   β”‚  75 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Transformation Service :: Basic Profiles
486 β”‚ Active   β”‚  75 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Transformation Service :: Jinja
487 β”‚ Active   β”‚  75 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Transformation Service :: JSonPath
488 β”‚ Active   β”‚  75 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Transformation Service :: Map
489 β”‚ Active   β”‚  75 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Transformation Service :: RegEx
490 β”‚ Active   β”‚  75 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Transformation Service :: XPath
491 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB UI :: Bundles :: Basic UI
492 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB UI :: Bundles :: CometVisu :: Backend
493 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB UI :: Bundles :: HABot Interactive Bot
494 β”‚ Resolved β”‚  80 β”‚ 5.1.4                 β”‚ openHAB UI :: Bundles :: HABPanel UI
495 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Voice :: VoiceRSS Text-to-Speech
496 β”‚ Active   β”‚  80 β”‚ 1.0.4                 β”‚ reactive-streams-jvm
497 β”‚ Active   β”‚  80 β”‚ 3.8.2                 β”‚ RRD4J
512 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Add-ons :: Bundles :: ddwrt Binding
513 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Core
514 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Add-on XML
515 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Marketplace Add-on Services
516 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Community Marketplace Add-on Service :: Karaf
517 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Audio
518 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: JAAS Authentication
519 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: OAuth2Client
520 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Automation
521 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Automation Media Modules
522 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Automation Script Modules
523 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Automation Script ProviderSupport
524 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Automation Script RuleSupport
525 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration Core
526 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration Discovery
527 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Process-based Suggested Add-on Finder
528 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration mDNS Discovery
529 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration SDDP Discovery
530 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration UPnP Discovery
531 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery
532 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery for Linux using sysfs scanning
533 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery using ser2net mDNS scanning
534 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration USB-Serial Discovery for Windows
535 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration Dispatcher
536 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Configuration Serial
537 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Ephemeris
538 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: ID
539 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Console
540 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: HTTP Interface
541 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: HTTP Interface Authentication
542 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Monitor
543 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Network I/O
544 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: REST Interface
545 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: REST Interface :: Core
546 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Sitemap REST Interface
547 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: SSE Interface
548 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: UI REST Interface
549 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: mDNS Service
550 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Serial Transport
551 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Serial Transport for RXTX
552 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Serial Transport for RFC2217
553 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: UPnP Transport
554 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: WebSocket
555 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Audio PCM Websocket Interface
556 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Karaf Integration
557 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Items
558 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Items Runtime
559 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Persistence
560 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Persistence Runtime
561 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Rules
562 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Rules Runtime
563 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Script
564 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Script Runtime
565 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Sitemap
566 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Sitemap Runtime
567 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Thing
568 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model Thing Runtime
569 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Model YAML
570 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Persistence
571 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Semantics
572 β”‚ Waiting  β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Thing
573 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Transformation Service
574 β”‚ Resolved β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: UI
575 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: UI Icon Support
576 β”‚ Active   β”‚  80 β”‚ 5.1.3                 β”‚ openHAB Core :: Bundles :: Voice
577 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-experimental
578 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-extensions
579 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-im
580 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-java11
581 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-resolver-javax
582 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-sasl-javax
583 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-streammanagement
584 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-tcp
585 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-xmlparser
586 β”‚ Active   β”‚  80 β”‚ 4.5.0.beta6           β”‚ smack-core
587 β”‚ Active   β”‚  78 β”‚ 25.0.1                β”‚ GraalVM :: JS :: Language
588 β”‚ Active   β”‚  80 β”‚ 25.0.1                β”‚ GraalVM :: JS :: Script Engine
589 β”‚ Active   β”‚  80 β”‚ 5.1.4                 β”‚ openHAB Add-ons :: Bundles :: Automation :: JavaScript Scripting

apologies left out the bundles list

I would suggest you open a new topic with an appropriate title so other people can chime in to help, as this appears to be unrelated to jrubyscripting addon. I have never encountered such situation so I can’t be of much help.

My only advice is to do a cache and tmp clean and do a restart

rm -rf <USERDATA>/cache/* <USERDATA>/tmp/* (replace the placeholder)

Or if you could, just edit the title of this post so you won’t have to repeat the information again.