mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-11 07:32:11 +01:00
6cfb1e295d
* Initial contribution Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Remove Value-Added Tax Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Migrate naming convention Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Add channel configuration example Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Remove current prefixes for forward compatibility with timestamped items Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Add filter for another grid company Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Use ISO 3166-1 alpha-2 codes in lowercase for XSD compliance Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Fix error handling for deserializers Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Fix compliance with RFC 9110 section 10.1.5 Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Add JavaScript example code Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Refactor List to Collection and use iterators Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Add filter for another grid company Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Extend cached history to 24 hours Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Remove filter for expired GLN Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Fix typos Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Improve descriptions Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> * Improve logging Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk> --------- Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
26 lines
798 B
XML
26 lines
798 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.binding.energidataservice</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: Energi Data Service Binding</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|