This is an automated email from the ASF dual-hosted git repository.

ppkarwasz pushed a commit to branch fix/mockito-scope
in repository https://gitbox.apache.org/repos/asf/commons-parent.git

commit b7998d4fc5bcb79a14ffae8bc5e73f6923b1ef20
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Thu Apr 23 09:27:10 2026 +0200

    fix: dependency management scope for `mockito-bom`
    
    The `mockito-bom` artifact didn't have an `import` scope, so it was managed 
as an artifact instead of importing its dependencies.
---
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4c30c4f..06f049e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -358,7 +358,8 @@
         <groupId>org.mockito</groupId>
         <artifactId>mockito-bom</artifactId>
         <version>${commons.mockito.version}</version>
-        <scope>test</scope>
+        <type>pom</type>
+        <scope>import</scope>
       </dependency>
     </dependencies>
   </dependencyManagement>

Reply via email to