Skip to content

Commit 0165e0c

Browse files
authored
fix: Ensure proper errors are reported when authentication fails (#318)
1 parent 1828b4d commit 0165e0c

File tree

6 files changed

+554
-10
lines changed

6 files changed

+554
-10
lines changed

client/base/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<groupId>${project.groupId}</groupId>
4949
<artifactId>a2a-java-sdk-spec</artifactId>
5050
</dependency>
51+
<dependency>
52+
<groupId>${project.groupId}</groupId>
53+
<artifactId>a2a-java-sdk-spec-grpc</artifactId>
54+
<scope>test</scope>
55+
</dependency>
5156
<dependency>
5257
<groupId>org.junit.jupiter</groupId>
5358
<artifactId>junit-jupiter-api</artifactId>
@@ -64,6 +69,16 @@
6469
<artifactId>slf4j-jdk14</artifactId>
6570
<scope>test</scope>
6671
</dependency>
72+
<dependency>
73+
<groupId>io.grpc</groupId>
74+
<artifactId>grpc-testing</artifactId>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>io.grpc</groupId>
79+
<artifactId>grpc-inprocess</artifactId>
80+
<scope>test</scope>
81+
</dependency>
6782
</dependencies>
6883

6984
</project>

0 commit comments

Comments
 (0)