|
6 | 6 |
|
7 | 7 | <groupId>io.github.a2asdk</groupId> |
8 | 8 | <artifactId>a2a-java-sdk-parent</artifactId> |
9 | | - <version>0.2.6.Beta1-SNAPSHOT</version> |
| 9 | + <version>${revision}</version> |
10 | 10 |
|
11 | 11 | <packaging>pom</packaging> |
12 | 12 |
|
|
38 | 38 |
|
39 | 39 |
|
40 | 40 | <properties> |
| 41 | + <revision>0.2.6.Beta1-SNAPSHOT</revision> |
41 | 42 | <grpc.version>1.73.0</grpc.version> |
42 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | 44 | <maven-clean-plugin.version>3.5.0</maven-clean-plugin.version> |
|
47 | 48 | <maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version> |
48 | 49 | <maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version> |
49 | 50 | <maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version> |
| 51 | + <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version> |
50 | 52 | <sonatype-central-publishing-plugin.version>0.8.0</sonatype-central-publishing-plugin.version> |
51 | 53 | <jackson.version>2.17.0</jackson.version> |
52 | 54 | <jakarta.enterprise.cdi-api.version>4.1.0</jakarta.enterprise.cdi-api.version> |
|
260 | 262 | </execution> |
261 | 263 | </executions> |
262 | 264 | </plugin> |
| 265 | + <plugin> |
| 266 | + <groupId>org.codehaus.mojo</groupId> |
| 267 | + <artifactId>flatten-maven-plugin</artifactId> |
| 268 | + <version>${flatten-maven-plugin.version}</version> |
| 269 | + <configuration> |
| 270 | + <updatePomFile>true</updatePomFile> |
| 271 | + <flattenMode>ossrh</flattenMode> |
| 272 | + </configuration> |
| 273 | + <executions> |
| 274 | + <execution> |
| 275 | + <id>flatten</id> |
| 276 | + <goals> |
| 277 | + <goal>flatten</goal> |
| 278 | + </goals> |
| 279 | + <phase>generate-resources</phase> |
| 280 | + </execution> |
| 281 | + <execution> |
| 282 | + <id>flatten.clean</id> |
| 283 | + <goals> |
| 284 | + <goal>clean</goal> |
| 285 | + </goals> |
| 286 | + <phase>clean</phase> |
| 287 | + </execution> |
| 288 | + </executions> |
| 289 | + </plugin> |
263 | 290 | </plugins> |
264 | 291 | </pluginManagement> |
265 | 292 | <plugins> |
|
275 | 302 | <groupId>org.sonatype.central</groupId> |
276 | 303 | <artifactId>central-publishing-maven-plugin</artifactId> |
277 | 304 | </plugin> |
| 305 | + <plugin> |
| 306 | + <groupId>org.codehaus.mojo</groupId> |
| 307 | + <artifactId>flatten-maven-plugin</artifactId> |
| 308 | + </plugin> |
278 | 309 | </plugins> |
279 | 310 | </build> |
280 | 311 |
|
|
0 commit comments