From b598e180ca39841bbe058bf27eafde6d65c0801d Mon Sep 17 00:00:00 2001 From: childrengreens Date: Mon, 29 Dec 2025 18:06:14 +0800 Subject: [PATCH 1/3] refactor: Update health indicator imports and upgrade Spring Boot version to 4.0.1 --- spring/pom.xml | 17 +++++++++-------- .../spring/health/InfluxDB2HealthIndicator.java | 6 +++--- ...fluxDB2HealthIndicatorAutoConfiguration.java | 6 +++--- ...DB2HealthIndicatorAutoConfigurationTest.java | 2 +- 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/spring/pom.xml b/spring/pom.xml index d9c4b4723a5..509e82a6b97 100644 --- a/spring/pom.xml +++ b/spring/pom.xml @@ -73,7 +73,7 @@ 1.15.2 - 3.5.5 + 4.0.1 6.1.3 @@ -121,15 +121,16 @@ org.springframework.boot - spring-boot-actuator-autoconfigure + spring-boot-autoconfigure + ${spring-boot.version} + true + + + + org.springframework.boot + spring-boot-health ${spring-boot.version} true - - - com.fasterxml.jackson.core - jackson-databind - - diff --git a/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicator.java b/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicator.java index 7d5485d5b5a..269b60047ac 100644 --- a/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicator.java +++ b/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicator.java @@ -23,9 +23,9 @@ import com.influxdb.client.InfluxDBClient; -import org.springframework.boot.actuate.health.AbstractHealthIndicator; -import org.springframework.boot.actuate.health.Health; -import org.springframework.boot.actuate.health.HealthIndicator; +import org.springframework.boot.health.contributor.AbstractHealthIndicator; +import org.springframework.boot.health.contributor.Health; +import org.springframework.boot.health.contributor.HealthIndicator; import org.springframework.util.Assert; /** diff --git a/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfiguration.java b/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfiguration.java index 58467860b75..2f5efca58f6 100644 --- a/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfiguration.java +++ b/spring/src/main/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfiguration.java @@ -26,14 +26,14 @@ import com.influxdb.client.InfluxDBClient; import com.influxdb.spring.influx.InfluxDB2AutoConfiguration; -import org.springframework.boot.actuate.autoconfigure.health.CompositeHealthContributorConfiguration; -import org.springframework.boot.actuate.autoconfigure.health.ConditionalOnEnabledHealthIndicator; -import org.springframework.boot.actuate.health.HealthContributor; import org.springframework.boot.autoconfigure.AutoConfigureAfter; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; +import org.springframework.boot.health.autoconfigure.contributor.CompositeHealthContributorConfiguration; +import org.springframework.boot.health.autoconfigure.contributor.ConditionalOnEnabledHealthIndicator; +import org.springframework.boot.health.contributor.HealthContributor; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; diff --git a/spring/src/test/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfigurationTest.java b/spring/src/test/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfigurationTest.java index d57fe38e515..2a19949ae45 100644 --- a/spring/src/test/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfigurationTest.java +++ b/spring/src/test/java/com/influxdb/spring/health/InfluxDB2HealthIndicatorAutoConfigurationTest.java @@ -24,7 +24,7 @@ import com.influxdb.client.InfluxDBClient; import org.junit.jupiter.api.Test; -import org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration; +import org.springframework.boot.health.autoconfigure.contributor.HealthContributorAutoConfiguration; import org.springframework.boot.autoconfigure.AutoConfigurations; import org.springframework.boot.test.context.runner.ApplicationContextRunner; import org.springframework.context.annotation.Bean; From f8b1d051452a8d207e9c6c88fffb0c7fa5298a3d Mon Sep 17 00:00:00 2001 From: childrengreens Date: Thu, 5 Mar 2026 19:07:26 +0800 Subject: [PATCH 2/3] Update dependency versions to 8.0.0-SNAPSHOT --- README.md | 12 ++++++------ client-core/pom.xml | 2 +- client-kotlin/README.md | 2 +- client-kotlin/pom.xml | 2 +- client-legacy/README.md | 4 ++-- client-legacy/pom.xml | 2 +- client-osgi/pom.xml | 2 +- client-reactive/README.md | 4 ++-- client-reactive/pom.xml | 2 +- client-scala/README.md | 8 ++++---- client-scala/cross/2.12/pom.xml | 2 +- client-scala/cross/2.13/pom.xml | 2 +- client-test/pom.xml | 2 +- client-utils/pom.xml | 2 +- client/README.md | 4 ++-- client/pom.xml | 2 +- examples/pom.xml | 4 ++-- flux-dsl/README.md | 4 ++-- flux-dsl/pom.xml | 2 +- karaf/karaf-assembly/pom.xml | 2 +- karaf/karaf-features/pom.xml | 2 +- karaf/karaf-kar/pom.xml | 4 ++-- karaf/pom.xml | 2 +- pom.xml | 14 +++++++------- spring/README.md | 4 ++-- spring/pom.xml | 3 +-- 26 files changed, 47 insertions(+), 48 deletions(-) diff --git a/README.md b/README.md index d844869e5c2..b4ec7d4ffdc 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Download the latest version: com.influxdb influxdb-client-java - 7.5.0 + 8.0.0 ``` @@ -110,7 +110,7 @@ Download the latest version: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-java:7.5.0" + implementation "com.influxdb:influxdb-client-java:8.0.0" } ``` @@ -218,7 +218,7 @@ Download the latest version: com.influxdb influxdb-client-java - 7.5.0 + 8.0.0 ``` @@ -226,7 +226,7 @@ Download the latest version: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-java:7.5.0" + implementation "com.influxdb:influxdb-client-java:8.0.0" } ``` @@ -319,7 +319,7 @@ Download the latest version: com.influxdb influxdb-client-flux - 7.5.0 + 8.0.0 ``` @@ -327,7 +327,7 @@ Download the latest version: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-flux:7.5.0" + implementation "com.influxdb:influxdb-client-flux:8.0.0" } ``` diff --git a/client-core/pom.xml b/client-core/pom.xml index 7592bfc63b9..b2318913096 100644 --- a/client-core/pom.xml +++ b/client-core/pom.xml @@ -28,7 +28,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-client-core diff --git a/client-kotlin/README.md b/client-kotlin/README.md index ee418d430fc..db134065cb5 100644 --- a/client-kotlin/README.md +++ b/client-kotlin/README.md @@ -310,7 +310,7 @@ The latest version for Maven dependency: Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-kotlin:7.5.0" + implementation "com.influxdb:influxdb-client-kotlin:8.0.0" } ``` diff --git a/client-kotlin/pom.xml b/client-kotlin/pom.xml index cb65b52a561..b796138abeb 100644 --- a/client-kotlin/pom.xml +++ b/client-kotlin/pom.xml @@ -26,7 +26,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT 4.0.0 diff --git a/client-legacy/README.md b/client-legacy/README.md index 51a3e7beadd..95f9abae9c1 100644 --- a/client-legacy/README.md +++ b/client-legacy/README.md @@ -162,14 +162,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-flux - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-flux:7.5.0" + implementation "com.influxdb:influxdb-client-flux:8.0.0" } ``` diff --git a/client-legacy/pom.xml b/client-legacy/pom.xml index 53ab0a0ba37..4e7e8c9bacf 100644 --- a/client-legacy/pom.xml +++ b/client-legacy/pom.xml @@ -28,7 +28,7 @@ com.influxdb influxdb-client - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-client-flux diff --git a/client-osgi/pom.xml b/client-osgi/pom.xml index 915f312db00..8a11adb4181 100644 --- a/client-osgi/pom.xml +++ b/client-osgi/pom.xml @@ -28,7 +28,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-client-osgi diff --git a/client-reactive/README.md b/client-reactive/README.md index 94643dcb900..7498f71311f 100644 --- a/client-reactive/README.md +++ b/client-reactive/README.md @@ -433,14 +433,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-reactive - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-reactive:7.5.0" + implementation "com.influxdb:influxdb-client-reactive:8.0.0" } ``` diff --git a/client-reactive/pom.xml b/client-reactive/pom.xml index fdfee43b0b3..68d53cd7ad1 100644 --- a/client-reactive/pom.xml +++ b/client-reactive/pom.xml @@ -26,7 +26,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT 4.0.0 diff --git a/client-scala/README.md b/client-scala/README.md index 920e006a6fb..4035347f734 100644 --- a/client-scala/README.md +++ b/client-scala/README.md @@ -257,14 +257,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-scala_2.12 - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-scala_2.12:7.5.0" + implementation "com.influxdb:influxdb-client-scala_2.12:8.0.0" } ``` @@ -275,14 +275,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-scala_2.13 - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-scala_2.13:7.5.0" + implementation "com.influxdb:influxdb-client-scala_2.13:8.0.0" } ``` diff --git a/client-scala/cross/2.12/pom.xml b/client-scala/cross/2.12/pom.xml index 34a1ac3094a..51eb7f5f4f6 100644 --- a/client-scala/cross/2.12/pom.xml +++ b/client-scala/cross/2.12/pom.xml @@ -26,7 +26,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/client-scala/cross/2.13/pom.xml b/client-scala/cross/2.13/pom.xml index 68b40673436..16dc982e948 100644 --- a/client-scala/cross/2.13/pom.xml +++ b/client-scala/cross/2.13/pom.xml @@ -26,7 +26,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/client-test/pom.xml b/client-test/pom.xml index 8fbdb16259f..d2cffad467b 100644 --- a/client-test/pom.xml +++ b/client-test/pom.xml @@ -28,7 +28,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-client-test diff --git a/client-utils/pom.xml b/client-utils/pom.xml index a4b970d12bd..b44f94bdb0c 100644 --- a/client-utils/pom.xml +++ b/client-utils/pom.xml @@ -28,7 +28,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-client-utils diff --git a/client/README.md b/client/README.md index 883f7626639..d463e5eab8e 100644 --- a/client/README.md +++ b/client/README.md @@ -1360,14 +1360,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-java - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-java:7.5.0" + implementation "com.influxdb:influxdb-client-java:8.0.0" } ``` diff --git a/client/pom.xml b/client/pom.xml index 3c9b29f34d7..c575c275085 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -26,7 +26,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT 4.0.0 diff --git a/examples/pom.xml b/examples/pom.xml index 55fb9459506..93ad7e03a86 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -27,12 +27,12 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT true - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT 4.0.0 diff --git a/flux-dsl/README.md b/flux-dsl/README.md index c1f8a9a0634..528faf98eee 100644 --- a/flux-dsl/README.md +++ b/flux-dsl/README.md @@ -1097,14 +1097,14 @@ The latest version for Maven dependency: com.influxdb flux-dsl - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:flux-dsl:7.5.0" + implementation "com.influxdb:flux-dsl:8.0.0" } ``` diff --git a/flux-dsl/pom.xml b/flux-dsl/pom.xml index f2b0cf970ac..20392e49294 100644 --- a/flux-dsl/pom.xml +++ b/flux-dsl/pom.xml @@ -28,7 +28,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT flux-dsl diff --git a/karaf/karaf-assembly/pom.xml b/karaf/karaf-assembly/pom.xml index 3d58be9531b..5119d565b97 100644 --- a/karaf/karaf-assembly/pom.xml +++ b/karaf/karaf-assembly/pom.xml @@ -28,7 +28,7 @@ influxdb-karaf com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-karaf-assembly diff --git a/karaf/karaf-features/pom.xml b/karaf/karaf-features/pom.xml index 1806e6017f4..6b78913e0a9 100644 --- a/karaf/karaf-features/pom.xml +++ b/karaf/karaf-features/pom.xml @@ -28,7 +28,7 @@ influxdb-karaf com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-karaf-features diff --git a/karaf/karaf-kar/pom.xml b/karaf/karaf-kar/pom.xml index 0e0bb8bb2ed..f944794c61f 100644 --- a/karaf/karaf-kar/pom.xml +++ b/karaf/karaf-kar/pom.xml @@ -28,7 +28,7 @@ influxdb-karaf com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-karaf-kar @@ -82,7 +82,7 @@ ${project.groupId} influxdb-karaf-features - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT features xml diff --git a/karaf/pom.xml b/karaf/pom.xml index 82a75626bb7..95b5ffd168e 100644 --- a/karaf/pom.xml +++ b/karaf/pom.xml @@ -28,7 +28,7 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT influxdb-karaf diff --git a/pom.xml b/pom.xml index cb8d1ec68e1..62937826d19 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ com.influxdb influxdb-client - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT pom @@ -538,38 +538,38 @@ com.influxdb influxdb-client-test - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT test com.influxdb influxdb-client-core - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT com.influxdb influxdb-client-utils - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT com.influxdb influxdb-client-java - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT com.influxdb influxdb-client-reactive - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT com.influxdb influxdb-client-flux - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT diff --git a/spring/README.md b/spring/README.md index 3a2f8d98a31..ce719b14792 100644 --- a/spring/README.md +++ b/spring/README.md @@ -114,13 +114,13 @@ The latest version for Maven dependency: com.influxdb influxdb-spring - 7.5.0 + 8.0.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-spring:7.5.0" + implementation "com.influxdb:influxdb-spring:8.0.0" } ``` diff --git a/spring/pom.xml b/spring/pom.xml index 509e82a6b97..6148a5a675a 100644 --- a/spring/pom.xml +++ b/spring/pom.xml @@ -26,12 +26,11 @@ influxdb-client com.influxdb - 7.6.0-SNAPSHOT + 8.0.0-SNAPSHOT 4.0.0 influxdb-spring - 7.6.0-SNAPSHOT jar Spring Integration for InfluxDB 2.x From 852ced48a053946f4a96cc452b6de813b39e408e Mon Sep 17 00:00:00 2001 From: childrengreens Date: Thu, 5 Mar 2026 21:03:38 +0800 Subject: [PATCH 3/3] Restore README.md dependency version to 7.4.0 --- README.md | 12 ++++++------ client-kotlin/README.md | 2 +- client-legacy/README.md | 4 ++-- client-reactive/README.md | 4 ++-- client-scala/README.md | 8 ++++---- client/README.md | 4 ++-- flux-dsl/README.md | 4 ++-- spring/README.md | 4 ++-- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index b4ec7d4ffdc..d844869e5c2 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Download the latest version: com.influxdb influxdb-client-java - 8.0.0 + 7.5.0 ``` @@ -110,7 +110,7 @@ Download the latest version: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-java:8.0.0" + implementation "com.influxdb:influxdb-client-java:7.5.0" } ``` @@ -218,7 +218,7 @@ Download the latest version: com.influxdb influxdb-client-java - 8.0.0 + 7.5.0 ``` @@ -226,7 +226,7 @@ Download the latest version: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-java:8.0.0" + implementation "com.influxdb:influxdb-client-java:7.5.0" } ``` @@ -319,7 +319,7 @@ Download the latest version: com.influxdb influxdb-client-flux - 8.0.0 + 7.5.0 ``` @@ -327,7 +327,7 @@ Download the latest version: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-flux:8.0.0" + implementation "com.influxdb:influxdb-client-flux:7.5.0" } ``` diff --git a/client-kotlin/README.md b/client-kotlin/README.md index db134065cb5..ee418d430fc 100644 --- a/client-kotlin/README.md +++ b/client-kotlin/README.md @@ -310,7 +310,7 @@ The latest version for Maven dependency: Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-kotlin:8.0.0" + implementation "com.influxdb:influxdb-client-kotlin:7.5.0" } ``` diff --git a/client-legacy/README.md b/client-legacy/README.md index 95f9abae9c1..51a3e7beadd 100644 --- a/client-legacy/README.md +++ b/client-legacy/README.md @@ -162,14 +162,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-flux - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-flux:8.0.0" + implementation "com.influxdb:influxdb-client-flux:7.5.0" } ``` diff --git a/client-reactive/README.md b/client-reactive/README.md index 7498f71311f..94643dcb900 100644 --- a/client-reactive/README.md +++ b/client-reactive/README.md @@ -433,14 +433,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-reactive - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-reactive:8.0.0" + implementation "com.influxdb:influxdb-client-reactive:7.5.0" } ``` diff --git a/client-scala/README.md b/client-scala/README.md index 4035347f734..920e006a6fb 100644 --- a/client-scala/README.md +++ b/client-scala/README.md @@ -257,14 +257,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-scala_2.12 - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-scala_2.12:8.0.0" + implementation "com.influxdb:influxdb-client-scala_2.12:7.5.0" } ``` @@ -275,14 +275,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-scala_2.13 - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-scala_2.13:8.0.0" + implementation "com.influxdb:influxdb-client-scala_2.13:7.5.0" } ``` diff --git a/client/README.md b/client/README.md index d463e5eab8e..883f7626639 100644 --- a/client/README.md +++ b/client/README.md @@ -1360,14 +1360,14 @@ The latest version for Maven dependency: com.influxdb influxdb-client-java - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-client-java:8.0.0" + implementation "com.influxdb:influxdb-client-java:7.5.0" } ``` diff --git a/flux-dsl/README.md b/flux-dsl/README.md index 528faf98eee..c1f8a9a0634 100644 --- a/flux-dsl/README.md +++ b/flux-dsl/README.md @@ -1097,14 +1097,14 @@ The latest version for Maven dependency: com.influxdb flux-dsl - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:flux-dsl:8.0.0" + implementation "com.influxdb:flux-dsl:7.5.0" } ``` diff --git a/spring/README.md b/spring/README.md index ce719b14792..3a2f8d98a31 100644 --- a/spring/README.md +++ b/spring/README.md @@ -114,13 +114,13 @@ The latest version for Maven dependency: com.influxdb influxdb-spring - 8.0.0 + 7.5.0 ``` Or when using with Gradle: ```groovy dependencies { - implementation "com.influxdb:influxdb-spring:8.0.0" + implementation "com.influxdb:influxdb-spring:7.5.0" } ```