fix: Move Micronaut and Spring Boot starters under extensions#212
Merged
AlbumenJ merged 1 commit intoagentscope-ai:mainfrom Dec 17, 2025
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR restructures the AgentScope Java project by moving framework-specific integrations (Micronaut and Spring Boot starters) from the root level into the agentscope-extensions module. This consolidation improves project organization by grouping all extension modules together.
Key Changes:
- Relocates
agentscope-micronautandagentscope-spring-boot-startersmodules underagentscope-extensions - Updates POM parent references and relative paths to reflect the new module hierarchy
- Adds comprehensive test coverage and configuration examples for both integrations with support for multiple LLM providers (DashScope, OpenAI, Gemini, Anthropic)
Reviewed changes
Copilot reviewed 5 out of 38 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| pom.xml | Removes Micronaut and Spring Boot starter module declarations from root |
| agentscope-extensions/pom.xml | Adds relocated modules to extensions parent POM |
| agentscope-extensions/agentscope-spring-boot-starters/pom.xml | Updates relativePath to point to grandparent POM |
| agentscope-extensions/agentscope-micronaut/pom.xml | Updates relativePath to point to grandparent POM |
| Spring Boot starter files | Adds auto-configuration, properties, tests, and provider support |
| Micronaut integration files | Adds factory, properties, tests, and provider support |
| agentscope-examples/micronaut-example/README.md | Updates documentation link to reflect new module location |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
AlbumenJ
approved these changes
Dec 17, 2025
JGoP-L
added a commit
to JGoP-L/agentscope-java
that referenced
this pull request
Dec 29, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AgentScope-Java Version
1.0.3-SNAPSHOT
Description
This PR implements the refactoring described in issue #211 to consolidate framework-specific integrations under the
agentscope-extensionsmodule.Changes
agentscope-extensions/agentscope-micronautagentscope-extensions/agentscope-spring-boot-startersagentscope-extensionsPOM to reflect new structureHow to Test