Add LICENSE, AGENTS.md, and richer package metadata#2
Conversation
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 975f7da192
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| ```xml | ||
| <dependency> | ||
| <groupId>cn.uapis</groupId> |
There was a problem hiding this comment.
Fix the documented Maven coordinates
The groupId documented here does not match the artifact this repository builds: pom.xml still declares <groupId>AxT-Team</groupId>, and the existing README quickstart imports uapi.Client rather than any cn.uapis package. Agents following this new playbook will add cn.uapis:uapi-sdk-java:0.1.17, which this project does not produce, and then generate usage code that cannot resolve against the SDK.
Useful? React with 👍 / 👎.
| </developers> | ||
| <scm> | ||
| <connection>scm:git:git://github.com/AxT-Team/uapi-sdk-java.git</connection> | ||
| <developerConnection>scm:git:ssh://github.com:AxT-Team/uapi-sdk-java.git</developerConnection> |
There was a problem hiding this comment.
Fix malformed SCM developer connection
When Maven release/deploy tooling uses this developerConnection, the SSH URL portion parses as host github.com with port AxT-Team; Java URI parsing rejects that non-numeric port, so SCM consumers cannot use it for developer checkouts or tags. Use a valid form such as scm:git:ssh://git@github.com/AxT-Team/uapi-sdk-java.git or scm:git:git@github.com:AxT-Team/uapi-sdk-java.git.
Useful? React with 👍 / 👎.
Summary
Land explicit license terms, an agent-facing playbook, and discovery-friendly package metadata.
uapis.cnhomepage, search-friendly keywords / classifiers / tagsNo code changes; build/publish pipeline untouched.