Skip to content

Commit

Permalink
fixed zones
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Vraník authored and Petr Vraník committed Jan 1, 2025
1 parent 5b00b0c commit 94ccd51
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies {
implementation libs.info.picocli
implementation libs.com.fasterxml.jackson.dataformat.jackson.dataformat.yaml
implementation libs.com.vdurmont.semver4j
implementation libs.org.apache.ivy

annotationProcessor libs.info.picocli.picocli.codegen

Expand All @@ -37,6 +38,9 @@ compileJava {
java {
withSourcesJar()
withJavadocJar()
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}

test {
Expand Down
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ org-junit-jupiter-junit-jupiter = "org.junit.jupiter:junit-jupiter:5.11.4"
org-projectlombok-lombok = "org.projectlombok:lombok:1.18.36"
org-slf4j-slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "org-slf4j" }
org-slf4j-slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "org-slf4j" }
org-apache-ivy = "org.apache.ivy:ivy:2.5.3"

[plugins]
com-github-ben-manes-versions = "com.github.ben-manes.versions:0.51.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/net/suteren/netatmo/domain/therm/Zone.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public record Zone(
String name,
int type,
@JsonProperty("rooms_temp") List<RoomTemp> roomstemp,
List<Room> rooms
List<Room> rooms,
List<Module> modules
) {}

0 comments on commit 94ccd51

Please sign in to comment.