This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne.git
commit b914068a458c3eba10bb2c6882bc8b7df361227a Author: Andrus Adamchik <[email protected]> AuthorDate: Sun May 10 18:49:51 2026 -0400 Add mockito-core as explicit test dependency in cayenne-gradle-plugin --- cayenne-gradle-plugin/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cayenne-gradle-plugin/pom.xml b/cayenne-gradle-plugin/pom.xml index 5764590e2..4d1ea8cda 100644 --- a/cayenne-gradle-plugin/pom.xml +++ b/cayenne-gradle-plugin/pom.xml @@ -169,6 +169,11 @@ <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId>
