Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ indent_size = 2
ij_continuation_indent_size = 4
max_line_length=100

[*.kt]
indent_size = 4

[{*.gradle, *.py}]
indent_size = 4
ij_continuation_indent_size = 8
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

plugins {
id("com.github.ben-manes.versions") version "0.39.0"
}
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotlin.code.style=official
6 changes: 6 additions & 0 deletions kafka-connect-fitbit-source/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
}

dependencies {
api project(':kafka-connect-rest-source')
api group: 'io.confluent', name: 'kafka-connect-avro-converter', version: confluentVersion
api group: 'org.radarbase', name: 'radar-schemas-commons', version: '0.7.3'

implementation(project(":radar-fitbit-converter"))

implementation group: 'org.radarbase', name: 'oauth-client-util', version: '0.8.0'

implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: jacksonVersion
Expand Down

This file was deleted.

Loading