File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
kafka-connect-fitbit-source
kafka-connect-oura-source Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -28,4 +28,6 @@ object Versions {
2828 const val junit = " 5.10.2"
2929 const val wiremock = " 3.0.1"
3030 const val mockito = " 5.11.0"
31+
32+ const val nettyVersion = " 4.1.118.Final"
3133}
Original file line number Diff line number Diff line change 11description = " Kafka connector for Fitbit API source"
22
33dependencies {
4+
5+ /* The entries in the block below are added here to force the version of
6+ * transitive dependencies and mitigate reported vulnerabilities */
7+ implementation(" io.netty:netty-handler-proxy:${Versions .nettyVersion} " )
8+ implementation(" io.netty:netty-handler:${Versions .nettyVersion} " )
9+
410 api(project(" :kafka-connect-rest-source" ))
511 api(project(" :oura-library" ))
612 api(" io.confluent:kafka-connect-avro-converter:${Versions .confluent} " )
Original file line number Diff line number Diff line change 11description = " Kafka connector for Oura API source"
22
33dependencies {
4+
5+ /* The entries in the block below are added here to force the version of
6+ * transitive dependencies and mitigate reported vulnerabilities */
7+ implementation(" io.netty:netty-handler-proxy:${Versions .nettyVersion} " )
8+ implementation(" io.netty:netty-handler:${Versions .nettyVersion} " )
9+
410 api(project(" :oura-library" ))
511 api(" io.confluent:kafka-connect-avro-converter:${Versions .confluent} " )
612 api(" org.radarbase:radar-schemas-commons:${Versions .radarSchemas} " )
You can’t perform that action at this time.
0 commit comments