chore: add rules for basic development guidance - #13516
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces a new development guidelines document (SKILL.md) for the java-bigtable directory, covering source control, unit testing, import cleanup, and code formatting. The feedback suggests simplifying the formatting command to a more concise 'mvn fmt:format' and adding a section on building and installing snapshot artifacts with 'mvn install' to align with repository documentation guidelines.
| - Automatically format the code using the `fmt-maven-plugin`. | ||
| - Before finalizing your changes, run the following command in the terminal from the `java-bigtable` directory or the relevant module directory: | ||
| ```bash | ||
| mvn com.spotify.fmt:fmt-maven-plugin:format |
Contributor
| ```bash | ||
| mvn com.spotify.fmt:fmt-maven-plugin:format | ||
| ``` | ||
| - **Troubleshooting**: If the formatting command fails, it is usually because of an incompatible JDK version. Ensure you are running it in an environment with the correct JDK version for the project (typically 17+, depending on the project configuration). |
Contributor
There was a problem hiding this comment.
To align with the repository's documentation guidelines, please add a section clarifying that mvn install is used for building snapshot artifacts to the local ~/.m2 repository.
Suggested change
| - **Troubleshooting**: If the formatting command fails, it is usually because of an incompatible JDK version. Ensure you are running it in an environment with the correct JDK version for the project (typically 17+, depending on the project configuration). | |
| - **Troubleshooting**: If the formatting command fails, it is usually because of an incompatible JDK version. Ensure you are running it in an environment with the correct JDK version for the project (typically 17+, depending on the project configuration). | |
| ## 5. Building and Installing | |
| - Use mvn install to build snapshot artifacts to your local ~/.m2 repository. |
References
- In documentation about the Java build process, clarify that
mvn installis used for building snapshot artifacts to the local~/.m2repository.
igorbernstein2
approved these changes
Jun 18, 2026
mutianf
enabled auto-merge (squash)
June 18, 2026 15:29
lqiu96
pushed a commit
that referenced
this pull request
Jun 30, 2026
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.
No description provided.