Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: removing kalix dependency from Spring grpc client #1765

Merged
merged 3 commits into from
Aug 23, 2023
Merged
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
6 changes: 0 additions & 6 deletions docs/src/modules/java-protobuf/pages/spring-client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ Download the resulting ZIP file, which is an archive of a web application that i

----
<properties>
<kalix-sdk.version>1.1.7</kalix-sdk.version>
<akka-grpc.version>2.1.4</akka-grpc.version>
<protobuf.version>3.19.2</protobuf.version>
<protobuf-plugin.version>0.6.1</protobuf-plugin.version>
Expand Down Expand Up @@ -176,11 +175,6 @@ Download the resulting ZIP file, which is an archive of a web application that i
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>2.13.1.RELEASE</version>
</dependency>
<dependency>
<groupId>io.kalix</groupId>
<artifactId>kalix-java-sdk-protobuf</artifactId>
<version>${kalix-sdk.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
<java.version>11</java.version>
<jdk.target>11</jdk.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kalix-sdk.version>1.3.2</kalix-sdk.version>
<akka-grpc.version>2.1.4</akka-grpc.version>
<protobuf.version>3.19.2</protobuf.version>
<protobuf-plugin.version>0.6.1</protobuf-plugin.version>
Expand Down Expand Up @@ -54,11 +53,6 @@
<artifactId>grpc-client-spring-boot-starter</artifactId>
<version>2.13.1.RELEASE</version>
</dependency>
<dependency>
<groupId>io.kalix</groupId>
<artifactId>kalix-java-sdk-protobuf</artifactId>
<version>${kalix-sdk.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,12 @@
</encoder>
</appender>

<appender name="JSON-STDOUT" target="System.out" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
<layout class="kalix.javasdk.logging.LogbackJsonLayout">
<timestampFormat>yyyy-MM-dd'T'HH:mm:ss.SSSX</timestampFormat>
<timestampFormatTimezoneId>Etc/UTC</timestampFormatTimezoneId>
<appendLineSeparator>true</appendLineSeparator>
<jsonFormatter class="ch.qos.logback.contrib.jackson.JacksonJsonFormatter">
<prettyPrint>false</prettyPrint>
</jsonFormatter>
</layout>
</encoder>
</appender>

<appender name="ASYNC-JSON-STDOUT" class="ch.qos.logback.classic.AsyncAppender">
<queueSize>8192</queueSize>
<neverBlock>true</neverBlock>
<appender-ref ref="JSON-STDOUT"/>
</appender>

<logger name="akka" level="INFO"/>
<logger name="kalix" level="INFO"/>
<logger name="akka.http" level="INFO"/>
<logger name="io.grpc" level="INFO"/>

<root level="INFO">
<!-- <appender-ref ref="STDOUT"/>-->
<appender-ref ref="ASYNC-JSON-STDOUT"/>
<appender-ref ref="STDOUT"/>
</root>
</configuration>