This is an automated email from the ASF dual-hosted git repository. yasith pushed a commit to branch feat/airavata-service-layer in repository https://gitbox.apache.org/repos/asf/airavata.git
commit 17b1e6dc682d4e21aa53c76b867d92870ccb9883 Author: yasithdev <[email protected]> AuthorDate: Thu Mar 26 05:27:29 2026 -0500 build: add mockito test dependencies to airavata-api --- airavata-api/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/airavata-api/pom.xml b/airavata-api/pom.xml index 00745d41a3..3957ed7acd 100644 --- a/airavata-api/pom.xml +++ b/airavata-api/pom.xml @@ -173,6 +173,18 @@ under the License. <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>5.11.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-junit-jupiter</artifactId> + <version>5.11.0</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mariadb</artifactId>
