Skip to content

Commit 60dbe75

Browse files
nidhiii128adamsaghy
authored andcommitted
FINERACT-2504: Move test dependencies to testImplementation scope to prevent production bloat
1 parent 11467c5 commit 60dbe75

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

fineract-provider/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ configurations {
116116

117117
dependencies {
118118
implementation project(':fineract-core')
119-
implementation 'org.springframework.boot:spring-boot-starter-test'
120-
implementation 'org.mockito:mockito-core'
121-
implementation 'org.mockito:mockito-junit-jupiter'
122-
implementation 'org.junit.jupiter:junit-jupiter-api'
119+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
120+
testImplementation 'org.mockito:mockito-core'
121+
testImplementation 'org.mockito:mockito-junit-jupiter'
122+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
123123
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
124124
implementation 'org.liquibase:liquibase-core'
125125
}

integration-tests/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ configurations {
3535
}
3636
dependencies {
3737
driver 'com.mysql:mysql-connector-j'
38+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
39+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
3840
}
3941

4042
cargo {

0 commit comments

Comments
 (0)