Skip to content

Commit d4994ae

Browse files
committed
force upped version
Signed-off-by: Cassandra Coyle <[email protected]>
1 parent 645c734 commit d4994ae

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

examples/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@
129129
<artifactId>javax.annotation-api</artifactId>
130130
<version>1.3.2</version>
131131
</dependency>
132+
<dependency>
133+
<groupId>com.google.protobuf</groupId>
134+
<artifactId>protobuf-java</artifactId>
135+
<version>${protobuf.version}</version>
136+
</dependency>
132137
</dependencies>
133138

134139
<build>

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<grpc.version>1.69.0</grpc.version>
18-
<protobuf.version>3.25.5</protobuf.version>
18+
<protobuf.version>4.29.2</protobuf.version>
1919
<protocCommand>protoc</protocCommand>
2020
<dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.14.4/dapr/proto</dapr.proto.baseurl>
2121
<dapr.sdk.version>1.13.1</dapr.sdk.version>
@@ -113,6 +113,11 @@
113113
<version>${grpc.version}</version>
114114
<scope>test</scope>
115115
</dependency>
116+
<dependency>
117+
<groupId>org.jetbrains.kotlin</groupId>
118+
<artifactId>kotlin-stdlib</artifactId>
119+
<version>2.1.0</version>
120+
</dependency>
116121
</dependencies>
117122
</dependencyManagement>
118123

sdk-autogen/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<maven.deploy.skip>false</maven.deploy.skip>
2424
<grpc.version>1.69.0</grpc.version>
2525
<protocCommand>protoc</protocCommand>
26-
<protobuf.version>3.25.5</protobuf.version>
26+
<protobuf.version>4.29.2</protobuf.version>
2727
</properties>
2828

2929
<dependencies>
@@ -55,6 +55,16 @@
5555
<version>${grpc.version}</version>
5656
<scope>test</scope>
5757
</dependency>
58+
<dependency>
59+
<groupId>com.squareup.okio</groupId>
60+
<artifactId>okio</artifactId>
61+
<version>3.9.1</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.google.protobuf</groupId>
65+
<artifactId>protobuf-java</artifactId>
66+
<version>${protobuf.version}</version>
67+
</dependency>
5868
</dependencies>
5969

6070
<build>

sdk/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@
5353
<groupId>com.squareup.okhttp3</groupId>
5454
<artifactId>okhttp</artifactId>
5555
<version>4.12.0</version>
56+
<exclusions>
57+
<exclusion>
58+
<groupId>org.jetbrains.kotlin</groupId>
59+
<artifactId>kotlin-stdlib-jdk8</artifactId>
60+
</exclusion>
61+
</exclusions>
5662
</dependency>
5763
<dependency>
5864
<groupId>org.mockito</groupId>

0 commit comments

Comments
 (0)