Skip to content

Commit 7b230e8

Browse files
deps: minor cleanup (#2623)
* use mockito bom * stop using scopes in dep management Change-Id: I79ac199199b90ea8320d1a70ddef029cd3380dc1 Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/java-bigtable/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) - [ ] Rollback plan is reviewed and LGTMed - [ ] All new data plane features have a completed end to end testing plan Fixes #<issue_number_goes_here> ☕️ If you write sample code, please follow the [samples format]( https://togithub.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md).
1 parent 202b211 commit 7b230e8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@
190190
<groupId>com.google.truth.extensions</groupId>
191191
<artifactId>truth-proto-extension</artifactId>
192192
<version>1.4.4</version>
193-
<scope>test</scope>
194193
<exclusions>
195194
<!-- exclude protobuf-java as it is managed in the shared deps bom-->
196195
<exclusion>
@@ -206,8 +205,10 @@
206205
</dependency>
207206
<dependency>
208207
<groupId>org.mockito</groupId>
209-
<artifactId>mockito-core</artifactId>
208+
<artifactId>mockito-bom</artifactId>
210209
<version>4.11.0</version>
210+
<type>pom</type>
211+
<scope>import</scope>
211212
</dependency>
212213
</dependencies>
213214
</dependencyManagement>

0 commit comments

Comments
 (0)