forked from openJiuwen-ai/agent-runtime-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
169 lines (157 loc) · 6.89 KB
/
Copy pathpom.xml
File metadata and controls
169 lines (157 loc) · 6.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.openjiuwen</groupId>
<artifactId>agent-runtime-java</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>agent-runtime-java</name>
<description>Agent Runtime Java - A2A Service and Agent Service Adapters</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.6</version>
<relativePath/>
</parent>
<modules>
<module>service</module>
</modules>
<properties>
<revision>0.1.0</revision>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<a2a-sdk.version>1.0.0.Final</a2a-sdk.version>
<!-- Agent Core:Maven 版本与本地源码分支,文档仅引用此处,勿在多处写死版本号 -->
<agent-core.version>0.1.13</agent-core.version>
<agent-core.git.branch>feature/630</agent-core.git.branch>
<agent-core.repo.url>https://gitcode.com/openJiuwen/agent-core-java</agent-core.repo.url>
</properties>
<dependencyManagement>
<dependencies>
<!-- A2A SDK (v1.0.0.Final: groupId changed from io.github.a2asdk to org.a2aproject.sdk) -->
<dependency>
<groupId>org.a2aproject.sdk</groupId>
<artifactId>a2a-java-sdk-spec</artifactId>
<version>${a2a-sdk.version}</version>
</dependency>
<dependency>
<groupId>org.a2aproject.sdk</groupId>
<artifactId>a2a-java-sdk-server-common</artifactId>
<version>${a2a-sdk.version}</version>
</dependency>
<dependency>
<groupId>org.a2aproject.sdk</groupId>
<artifactId>a2a-java-sdk-jsonrpc-common</artifactId>
<version>${a2a-sdk.version}</version>
</dependency>
<dependency>
<groupId>org.a2aproject.sdk</groupId>
<artifactId>a2a-java-sdk-client</artifactId>
<version>${a2a-sdk.version}</version>
</dependency>
<!-- OpenJiuwen Agent Core -->
<dependency>
<groupId>com.openjiuwen</groupId>
<artifactId>agent-core-java</artifactId>
<version>${agent-core.version}</version>
</dependency>
<!-- ② Service leaf modules -->
<dependency>
<groupId>com.openjiuwen</groupId>
<artifactId>agent-service-spec</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.openjiuwen</groupId>
<artifactId>agent-service-adapters-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.openjiuwen</groupId>
<artifactId>agent-service-adapters-agentcore</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.openjiuwen</groupId>
<artifactId>agent-service-app</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Protobuf - 统一版本,解决 SDK 内部 protobuf-java 4.33.1 与 protobuf-java-util 4.32.1 不一致的问题 -->
<!-- Gson - SDK 的 JSONRPCUtils 需要 2.11.0+(setStrictness API) -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>4.33.2</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
<version>4.33.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!--
Required companion for the ${revision} CI-friendly version above: without it the installed/packaged
POMs keep the literal ${revision} and are unresolvable by downstream consumers. Bound to
process-resources so it runs under any command that reaches package/install/deploy (no build-command
change needed). resolveCiFriendliesOnly only rewrites ${revision}/${sha1}/${changelist}.
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>