mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-11 07:32:11 +01:00
7efc3e9e81
* change MyQ binding to use now required oAuth for authentication Signed-off-by: Dan Cunningham <dan@digitaldan.com> * Clean up error handling Signed-off-by: Dan Cunningham <dan@digitaldan.com> * Cleanup checkstyle errors Signed-off-by: Dan Cunningham <dan@digitaldan.com> * missing newline Signed-off-by: Dan Cunningham <dan@digitaldan.com> * Remove unused classes Signed-off-by: Dan Cunningham <dan@digitaldan.com> * Add token listener Signed-off-by: Dan Cunningham <dan@digitaldan.com> * add a redirect limit...just in case Signed-off-by: Dan Cunningham <dan@digitaldan.com> * Don't resue the oAuth service if we have been disosed or its closed. Reduce logging verbosity. Signed-off-by: Dan Cunningham <dan@digitaldan.com> * Force login if we get a 401 response Signed-off-by: Dan Cunningham <dan@digitaldan.com>
26 lines
801 B
XML
26 lines
801 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>3.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.binding.myq</artifactId>
|
|
|
|
<name>openHAB Add-ons :: Bundles :: MyQ Binding</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.8.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|