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

adamsaghy pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 60dbe75320 FINERACT-2504: Move test dependencies to testImplementation 
scope to prevent production bloat
60dbe75320 is described below

commit 60dbe753205d7fbbc787f11d36b468f90c63a98d
Author: nidhiii128 <[email protected]>
AuthorDate: Tue Feb 24 08:55:48 2026 +0000

    FINERACT-2504: Move test dependencies to testImplementation scope to 
prevent production bloat
---
 fineract-provider/build.gradle | 8 ++++----
 integration-tests/build.gradle | 2 ++
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/fineract-provider/build.gradle b/fineract-provider/build.gradle
index 4ab05300f1..34a414a9c9 100644
--- a/fineract-provider/build.gradle
+++ b/fineract-provider/build.gradle
@@ -116,10 +116,10 @@ configurations {
 
 dependencies {
     implementation project(':fineract-core')
-    implementation 'org.springframework.boot:spring-boot-starter-test'
-    implementation 'org.mockito:mockito-core'
-    implementation 'org.mockito:mockito-junit-jupiter'
-    implementation 'org.junit.jupiter:junit-jupiter-api'
+    testImplementation 'org.springframework.boot:spring-boot-starter-test'
+    testImplementation 'org.mockito:mockito-core'
+    testImplementation 'org.mockito:mockito-junit-jupiter'
+    testImplementation 'org.junit.jupiter:junit-jupiter-api'
     implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
     implementation 'org.liquibase:liquibase-core'
 }
diff --git a/integration-tests/build.gradle b/integration-tests/build.gradle
index 3aed9915fa..2dd6df4470 100644
--- a/integration-tests/build.gradle
+++ b/integration-tests/build.gradle
@@ -35,6 +35,8 @@ configurations {
 }
 dependencies {
     driver 'com.mysql:mysql-connector-j'
+    testImplementation 'org.springframework.boot:spring-boot-starter-test'
+    testImplementation 'org.junit.jupiter:junit-jupiter-api'
 }
 
 cargo {

Reply via email to