Skip to content

Commit

Permalink
Implemented Observe
Browse files Browse the repository at this point in the history
  • Loading branch information
Adalbert Makarovych authored and AdalbertMemSQL committed Oct 17, 2024
1 parent ed1f39c commit b1a9660
Show file tree
Hide file tree
Showing 8 changed files with 1,623 additions and 21 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@ dependencies {

runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"

implementation 'com.singlestore:singlestore-jdbc-client:1.2.0'
implementation 'com.singlestore:singlestore-jdbc-client:1.2.5'
implementation 'commons-cli:commons-cli:1.6.0'
implementation 'ch.qos.logback:logback-classic:1.4.14'
implementation 'ch.qos.logback:logback-core:1.4.14'
implementation 'org.slf4j:slf4j-api:2.0.12'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.1'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
Expand Down Expand Up @@ -76,12 +78,12 @@ jar {

manifest {
attributes(
'Main-Class' : 'com.singlestore.fivetran.connector.SingleStoreConnector'
'Main-Class': 'com.singlestore.fivetran.connector.SingleStoreConnector'
)
}

from {
configurations.runtimeClasspath.filter{ it.exists() }.collect { it.isDirectory() ? it : zipTree(it) }
configurations.runtimeClasspath.filter { it.exists() }.collect { it.isDirectory() ? it : zipTree(it) }
}
}

Expand Down
Loading

0 comments on commit b1a9660

Please sign in to comment.