Skip to content

Commit a16db08

Browse files
authored
chore: Prepare 0.2.3.Alpha1 release (#173)
# Description Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Follow the [`CONTRIBUTING` Guide](../CONTRIBUTING.md). - [x] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification. - Important Prefixes for [release-please](https://github.com/googleapis/release-please): - `fix:` which represents bug fixes, and correlates to a [SemVer](https://semver.org/) patch. - `feat:` represents a new feature, and correlates to a SemVer minor. - `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the `!`) and will result in a SemVer major. - [x] Ensure the tests pass - [x] Appropriate READMEs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
1 parent 55a16fd commit a16db08

File tree

13 files changed

+33
-31
lines changed

13 files changed

+33
-31
lines changed

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-client</artifactId>
1313

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-common</artifactId>
1313

examples/helloworld/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-examples-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>a2a-java-sdk-examples-client</artifactId>

examples/helloworld/client/src/main/java/io/a2a/examples/helloworld/HelloWorldRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
2-
//DEPS io.github.a2asdk:a2a-java-sdk-client:0.2.4-SNAPSHOT
2+
//DEPS io.github.a2asdk:a2a-java-sdk-client:0.2.3.Alpha2-SNAPSHOT
33
//SOURCES HelloWorldClient.java
44

55
/**

examples/helloworld/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>
1313

examples/helloworld/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-examples-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>a2a-java-sdk-examples-server</artifactId>

pom.xml

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.a2asdk</groupId>
88
<artifactId>a2a-java-sdk-parent</artifactId>
9-
<version>0.2.4-SNAPSHOT</version>
9+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1010

1111
<packaging>pom</packaging>
1212

@@ -43,6 +43,8 @@
4343
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
4444
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
4545
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
46+
<maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version>
47+
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
4648
<sonatype-central-publishing-plugin.version>0.8.0</sonatype-central-publishing-plugin.version>
4749
<jackson.version>2.17.0</jackson.version>
4850
<jakarta.enterprise.cdi-api.version>4.1.0</jakarta.enterprise.cdi-api.version>
@@ -60,7 +62,6 @@
6062

6163
<!-- Redirect test output to file -->
6264
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
63-
<maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version>
6465
</properties>
6566

6667
<dependencyManagement>
@@ -233,6 +234,20 @@
233234
</execution>
234235
</executions>
235236
</plugin>
237+
<plugin>
238+
<groupId>org.apache.maven.plugins</groupId>
239+
<artifactId>maven-gpg-plugin</artifactId>
240+
<version>${maven-gpg-plugin.version}</version>
241+
<executions>
242+
<execution>
243+
<id>sign-artifacts</id>
244+
<phase>verify</phase>
245+
<goals>
246+
<goal>sign</goal>
247+
</goals>
248+
</execution>
249+
</executions>
250+
</plugin>
236251
</plugins>
237252
</pluginManagement>
238253
<plugins>
@@ -275,27 +290,14 @@
275290
<plugin>
276291
<groupId>org.apache.maven.plugins</groupId>
277292
<artifactId>maven-source-plugin</artifactId>
278-
<executions>
279-
<execution>
280-
<id>attach-sources</id>
281-
<goals>
282-
<goal>jar-no-fork</goal>
283-
</goals>
284-
</execution>
285-
</executions>
286293
</plugin>
287-
288294
<plugin>
289295
<groupId>org.apache.maven.plugins</groupId>
290296
<artifactId>maven-javadoc-plugin</artifactId>
291-
<executions>
292-
<execution>
293-
<id>attach-javadocs</id>
294-
<goals>
295-
<goal>jar</goal>
296-
</goals>
297-
</execution>
298-
</executions>
297+
</plugin>
298+
<plugin>
299+
<groupId>org.apache.maven.plugins</groupId>
300+
<artifactId>maven-gpg-plugin</artifactId>
299301
</plugin>
300302
</plugins>
301303
</build>

sdk-jakarta/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-server-jakarta</artifactId>
1313

sdk-quarkus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-server-quarkus</artifactId>
1313

sdk-server-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.2.4-SNAPSHOT</version>
10+
<version>0.2.3.Alpha2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-server-common</artifactId>
1313

0 commit comments

Comments
 (0)