You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Avoid `@ObsoleteApi` or `@Deprecated` methods unless necessary.
139
+
4. Avoid unnecessary formatting changes to keep diffs clean.
140
+
5. Use `mvn`for everything other than the `test/integration` folder.
141
+
142
+
## 6. Dependency Management
136
143
137
144
- Try not to bump any external dependency version unless there is a known CVE (security or vulnerability issue) or a critical bug fix.
138
145
- Try to avoid introducing new external dependencies. If a new dependency is required, please state the reason.
139
146
- Prefer to use features from the Java standard library, then try to use features from any existing dependencies (preferably from Google managed dependencies).
140
147
141
-
## 6. Contribution Guidelines
148
+
## 7. Contribution Guidelines
142
149
143
150
- **Commits:** Commit messages should follow the [Conventional Commits](https://www.conventionalcommits.org/)
144
151
specification. The format is `<type>: <description>`. The type should be one of the following: fix, feat,
0 commit comments