Skip to content

Commit

Permalink
Fix API/implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeiklejohn committed Jan 31, 2024
1 parent 0f4f6cc commit 7a07afd
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,31 +43,31 @@ dependencies {
'armeria-thrift0.13',
'armeria-tomcat9',
'armeria-zookeeper3'].each {
api "com.linecorp.armeria:${it}:1.22.1"
implementation "com.linecorp.armeria:${it}:1.22.1"
}
api "io.lettuce:lettuce-core:6.2.2.RELEASE"
api 'org.postgresql:postgresql:42.3.3'
api 'com.datastax.cassandra:cassandra-driver-core:4.0.0'
api 'software.amazon.awssdk:dynamodb:2.20.74'
api 'com.datastax.cassandra:cassandra-driver-core:4.0.0'
api "com.github.cliftonlabs:json-simple:2.1.2"
api "org.json:json:20220924"
api 'org.jetbrains:annotations:16.0.2'
api "io.grpc:grpc-netty-shaded:1.40.1"
api 'com.google.code.gson:gson:2.8.9'
api 'org.grpcmock:grpcmock-junit5:0.9.3'
api 'com.google.protobuf:protobuf-java-util:3.21.7'
api 'org.eclipse.jetty:jetty-http:9.4.46.v20220331'
api 'org.eclipse.jetty:jetty-io:9.4.46.v20220331'
api 'org.eclipse.jetty:jetty-server:9.4.46.v20220331'
api 'org.eclipse.jetty:jetty-util:9.4.46.v20220331'
api 'org.junit.jupiter:junit-jupiter-api:5.7.0'
api "org.testcontainers:testcontainers:1.17.5"
api "org.apache.poi:poi:5.2.0"
api "org.apache.poi:poi-ooxml:5.2.0"
api "org.jxls:jxls-jexcel:1.0.9"
api "org.dhatim:fastexcel:0.15.3"
api "org.dhatim:fastexcel-reader:0.15.3"
implementation "io.lettuce:lettuce-core:6.2.2.RELEASE"
implementation 'org.postgresql:postgresql:42.3.3'
implementation 'com.datastax.cassandra:cassandra-driver-core:4.0.0'
implementation 'software.amazon.awssdk:dynamodb:2.20.74'
implementation 'com.datastax.cassandra:cassandra-driver-core:4.0.0'
implementation "com.github.cliftonlabs:json-simple:2.1.2"
implementation "org.json:json:20220924"
implementation 'org.jetbrains:annotations:16.0.2'
implementation "io.grpc:grpc-netty-shaded:1.40.1"
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'org.grpcmock:grpcmock-junit5:0.9.3'
implementation 'com.google.protobuf:protobuf-java-util:3.21.7'
implementation 'org.eclipse.jetty:jetty-http:9.4.46.v20220331'
implementation 'org.eclipse.jetty:jetty-io:9.4.46.v20220331'
implementation 'org.eclipse.jetty:jetty-server:9.4.46.v20220331'
implementation 'org.eclipse.jetty:jetty-util:9.4.46.v20220331'
implementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
implementation "org.testcontainers:testcontainers:1.17.5"
implementation "org.apache.poi:poi:5.2.0"
implementation "org.apache.poi:poi-ooxml:5.2.0"
implementation "org.jxls:jxls-jexcel:1.0.9"
implementation "org.dhatim:fastexcel:0.15.3"
implementation "org.dhatim:fastexcel-reader:0.15.3"

runtimeOnly 'ch.qos.logback:logback-classic:1.2.3'
runtimeOnly 'org.slf4j:log4j-over-slf4j:1.7.30'
Expand Down Expand Up @@ -149,7 +149,7 @@ javadoc {

group = "cloud.filibuster"
archivesBaseName = "instrumentation"
version = "3.0.2"
version = "3.0.3"

java {
withJavadocJar()
Expand Down

0 comments on commit 7a07afd

Please sign in to comment.