This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
commit f323a7f7e491c4d63bba91e9d956c7d5f1d1aaf1 Author: Robert Lazarski <[email protected]> AuthorDate: Sat May 16 10:38:29 2026 -1000 Add openapi, mcp-bridge, spring-boot-starter, jpa-schema to distribution These modules were built and tested but missing from the binary distribution assembly. Adds them as dependencies in the distribution pom.xml so they ship in the 2.0.1 release. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]> --- modules/distribution/pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/modules/distribution/pom.xml b/modules/distribution/pom.xml index eb4fa331ba..d3d129b54e 100644 --- a/modules/distribution/pom.xml +++ b/modules/distribution/pom.xml @@ -93,6 +93,26 @@ </dependency> <!-- removed: AXIS2-6105 --> <!-- axis2-fastinfoset removed: AXIS2-6105 --> + <dependency> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-openapi</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-mcp-bridge</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-spring-boot-starter</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.axis2</groupId> + <artifactId>axis2-jpa-schema</artifactId> + <version>${project.version}</version> + </dependency> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-jaxbri-codegen</artifactId>
