Adapt to core changes (addon.xml) (#13289)

Signed-off-by: Jan N. Klug <github@klug.nrw>
This commit is contained in:
J-N-K
2023-01-15 20:31:42 +01:00
committed by GitHub
parent 0f272d8523
commit 5f8214f08a
713 changed files with 3864 additions and 3007 deletions

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon:addon id="jpa" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:addon="https://openhab.org/schemas/addon/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/addon/v1.0.0 https://openhab.org/schemas/addon-1.0.0.xsd">
<type>persistence</type>
<name>JPA persistence</name>
<description>This is the persistence add-on for JPA.</description>
<service-id>org.openhab.jpa</service-id>
<config-description>
<parameter name="url" type="text" required="true">
<label>JDBC connection URL</label>
</parameter>
<parameter name="driver" type="text" required="true">
<label>JDBC Driver</label>
</parameter>
<parameter name="user" type="text">
<label>User</label>
</parameter>
<parameter name="password" type="text">
<context>password</context>
<label>Password</label>
</parameter>
</config-description>
</addon:addon>