Skip to content

Commit

Permalink
Refactor Jetty HTTP client, add HTTP/2 streams and code improvements (#…
Browse files Browse the repository at this point in the history
…533)

Signed-off-by: Jan N. Klug <[email protected]>
  • Loading branch information
J-N-K committed Nov 26, 2023
1 parent bc8a20a commit aad3064
Show file tree
Hide file tree
Showing 232 changed files with 8,547 additions and 6,878 deletions.
159 changes: 80 additions & 79 deletions bundles/org.smarthomej.binding.amazonechocontrol/README.md

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions bundles/org.smarthomej.binding.amazonechocontrol/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@
<version>1.1.6.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>2.2.600</version>
<scope>compile</scope>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<feature name="smarthomej-binding-amazonechocontrol" description="Amazon Echo Control Binding" version="${project.version}">
<feature>openhab-runtime-base</feature>
<bundle dependency="true">mvn:org.smarthomej.addons.bundles/org.smarthomej.commons/${project.version}</bundle>
<bundle dependency="true">mvn:org.apache.velocity/velocity-engine-core/2.3</bundle>
<bundle start-level="80">mvn:org.smarthomej.addons.bundles/org.smarthomej.binding.amazonechocontrol/${project.version}</bundle>
</feature>
</features>
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ public class AccountHandlerConfig {
public int discoverSmartHome = 0;
public int pollingIntervalSmartHomeAlexa = 60;
public int pollingIntervalSmartSkills = 120;
public int activityRequestDelay = 10;
}
Loading

0 comments on commit aad3064

Please sign in to comment.