|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>com.samples.a2a</groupId> |
| 7 | + <parent> |
| 8 | + <groupId>com.samples.a2a</groupId> |
| 9 | + <artifactId>agents-parent</artifactId> |
| 10 | + <version>0.1.0</version> |
| 11 | + </parent> |
| 12 | + |
8 | 13 | <artifactId>dice-agent-multi-transport</artifactId> |
9 | | - <version>0.1.0</version> |
10 | 14 | <packaging>pom</packaging> |
11 | 15 |
|
12 | 16 | <modules> |
13 | 17 | <module>server</module> |
14 | 18 | <module>client</module> |
15 | 19 | </modules> |
16 | | - |
17 | | - <properties> |
18 | | - <maven.compiler.source>17</maven.compiler.source> |
19 | | - <maven.compiler.target>17</maven.compiler.target> |
20 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
21 | | - <protobuf.version>4.31.1</protobuf.version> |
22 | | - <io.a2a.sdk.version>0.3.0.Beta1</io.a2a.sdk.version> |
23 | | - <jakarta.enterprise.cdi-api.version>4.1.0</jakarta.enterprise.cdi-api.version> |
24 | | - <quarkus.platform.version>3.26.1</quarkus.platform.version> |
25 | | - <quarkus.langchain4j.version>1.0.0</quarkus.langchain4j.version> |
26 | | - </properties> |
27 | | - |
28 | | - <dependencyManagement> |
29 | | - <dependencies> |
30 | | - <dependency> |
31 | | - <groupId>io.quarkus</groupId> |
32 | | - <artifactId>quarkus-bom</artifactId> |
33 | | - <version>${quarkus.platform.version}</version> |
34 | | - <type>pom</type> |
35 | | - <scope>import</scope> |
36 | | - </dependency> |
37 | | - <!-- Temporarily need this version override until Quarkus updates to gRPC v4 --> |
38 | | - <dependency> |
39 | | - <groupId>com.google.protobuf</groupId> |
40 | | - <artifactId>protobuf-java</artifactId> |
41 | | - <version>${protobuf.version}</version> |
42 | | - </dependency> |
43 | | - </dependencies> |
44 | | - </dependencyManagement> |
45 | | - |
46 | | - <build> |
47 | | - <pluginManagement> |
48 | | - <plugins> |
49 | | - <plugin> |
50 | | - <groupId>org.apache.maven.plugins</groupId> |
51 | | - <artifactId>maven-compiler-plugin</artifactId> |
52 | | - <version>3.13.0</version> |
53 | | - <configuration> |
54 | | - <release>17</release> |
55 | | - </configuration> |
56 | | - </plugin> |
57 | | - <plugin> |
58 | | - <groupId>io.quarkus</groupId> |
59 | | - <artifactId>quarkus-maven-plugin</artifactId> |
60 | | - <version>${quarkus.platform.version}</version> |
61 | | - <extensions>true</extensions> |
62 | | - <executions> |
63 | | - <execution> |
64 | | - <goals> |
65 | | - <goal>build</goal> |
66 | | - <goal>generate-code</goal> |
67 | | - <goal>generate-code-tests</goal> |
68 | | - </goals> |
69 | | - </execution> |
70 | | - </executions> |
71 | | - </plugin> |
72 | | - <plugin> |
73 | | - <groupId>org.codehaus.mojo</groupId> |
74 | | - <artifactId>exec-maven-plugin</artifactId> |
75 | | - <version>3.1.0</version> |
76 | | - </plugin> |
77 | | - </plugins> |
78 | | - </pluginManagement> |
79 | | - </build> |
80 | 20 | </project> |
0 commit comments