Skip to content

Commit ba565d8

Browse files
authored
Merge pull request #127 from redbus-labs/revert-119-a2a
Revert "Add comprehensive A2A implementation with tests"
2 parents 11a5fae + 7be5aa0 commit ba565d8

21 files changed

Lines changed: 3 additions & 2727 deletions

A2A_SERVICE_ENHANCEMENTS.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

a2a/pom.xml

Lines changed: 3 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,9 @@
2626
<errorprone.version>2.38.0</errorprone.version>
2727
<truth.version>1.4.4</truth.version>
2828
<junit4.version>4.13.2</junit4.version>
29-
<grpc.version>1.62.2</grpc.version>
3029
</properties>
3130

3231
<dependencies>
33-
<dependency>
34-
<groupId>io.grpc</groupId>
35-
<artifactId>grpc-netty-shaded</artifactId>
36-
<version>${grpc.version}</version>
37-
<scope>runtime</scope>
38-
</dependency>
39-
<dependency>
40-
<groupId>io.grpc</groupId>
41-
<artifactId>grpc-protobuf</artifactId>
42-
<version>${grpc.version}</version>
43-
</dependency>
44-
<dependency>
45-
<groupId>io.grpc</groupId>
46-
<artifactId>grpc-stub</artifactId>
47-
<version>${grpc.version}</version>
48-
</dependency>
49-
<dependency>
50-
<groupId>com.google.code.gson</groupId>
51-
<artifactId>gson</artifactId>
52-
<version>2.10.1</version>
53-
</dependency>
5432
<dependency>
5533
<groupId>com.google.adk</groupId>
5634
<artifactId>google-adk</artifactId>
@@ -128,99 +106,16 @@
128106
<version>${truth.version}</version>
129107
<scope>test</scope>
130108
</dependency>
131-
<dependency>
132-
<groupId>org.junit.jupiter</groupId>
133-
<artifactId>junit-jupiter-api</artifactId>
134-
<version>5.10.2</version>
135-
<scope>test</scope>
136-
</dependency>
137-
<dependency>
138-
<groupId>org.mockito</groupId>
139-
<artifactId>mockito-core</artifactId>
140-
<version>5.10.0</version>
141-
<scope>test</scope>
142-
</dependency>
143-
<dependency>
144-
<groupId>org.mockito</groupId>
145-
<artifactId>mockito-junit-jupiter</artifactId>
146-
<version>5.10.0</version>
147-
<scope>test</scope>
148-
</dependency>
149-
<dependency>
150-
<groupId>org.junit.jupiter</groupId>
151-
<artifactId>junit-jupiter-engine</artifactId>
152-
<version>5.10.2</version>
153-
<scope>test</scope>
154-
</dependency>
155109
</dependencies>
156-
157110
<build>
158-
<extensions>
159-
<extension>
160-
<groupId>kr.motd.maven</groupId>
161-
<artifactId>os-maven-plugin</artifactId>
162-
<version>1.7.0</version>
163-
</extension>
164-
</extensions>
165111
<plugins>
166112
<plugin>
167113
<groupId>org.apache.maven.plugins</groupId>
168-
<artifactId>maven-surefire-plugin</artifactId>
169-
<version>3.2.5</version>
170-
</plugin>
171-
<plugin>
172-
<groupId>org.apache.maven.plugins</groupId>
173-
<artifactId>maven-failsafe-plugin</artifactId>
174-
<version>3.2.5</version>
175-
<executions>
176-
<execution>
177-
<goals>
178-
<goal>integration-test</goal>
179-
<goal>verify</goal>
180-
</goals>
181-
</execution>
182-
</executions>
183-
</plugin>
184-
<plugin>
185-
<groupId>org.xolstice.maven.plugins</groupId>
186-
<artifactId>protobuf-maven-plugin</artifactId>
187-
<version>0.6.1</version>
114+
<artifactId>maven-compiler-plugin</artifactId>
115+
<version>3.13.0</version>
188116
<configuration>
189-
<protocArtifact>
190-
com.google.protobuf:protoc:3.21.7:exe:${os.detected.classifier}
191-
</protocArtifact>
192-
<pluginId>grpc-java</pluginId>
193-
<pluginArtifact>
194-
io.grpc:protoc-gen-grpc-java:1.48.1:exe:${os.detected.classifier}
195-
</pluginArtifact>
117+
<release>${java.version}</release>
196118
</configuration>
197-
<executions>
198-
<execution>
199-
<goals>
200-
<goal>compile</goal>
201-
<goal>compile-custom</goal>
202-
</goals>
203-
</execution>
204-
</executions>
205-
</plugin>
206-
<plugin>
207-
<groupId>org.codehaus.mojo</groupId>
208-
<artifactId>build-helper-maven-plugin</artifactId>
209-
<version>3.2.0</version>
210-
<executions>
211-
<execution>
212-
<phase>generate-sources</phase>
213-
<goals>
214-
<goal>add-source</goal>
215-
</goals>
216-
<configuration>
217-
<sources>
218-
<source>target/generated-sources/protobuf/java</source>
219-
<source>target/generated-sources/protobuf/grpc-java</source>
220-
</sources>
221-
</configuration>
222-
</execution>
223-
</executions>
224119
</plugin>
225120
</plugins>
226121
</build>

0 commit comments

Comments
 (0)