Skip to content

Commit ed00286

Browse files
authored
Stop relying on deprecated automatic test framework implementation dependencies (#5741)
https://docs.gradle.org/8.3/userguide/upgrading_version_8.html#test_framework_implementation_dependencies
1 parent 080aeec commit ed00286

File tree

65 files changed

+67
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+67
-0
lines changed

vividus-agent-reportportal/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies {
1919

2020
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
2121
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
22+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
2223
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
2324
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
2425
testImplementation(group: 'com.github.valfirst', name: 'slf4j-test', version: '3.0.1')

vividus-allure-adaptor/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ dependencies {
3131

3232
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
3333
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
34+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
3435
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
3536
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
3637
testImplementation(group: 'org.junit-pioneer', name: 'junit-pioneer', version: '2.3.0')

vividus-analytics/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies {
1414

1515
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
1616
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
17+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1718
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
1819
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
1920
testImplementation(group: 'com.github.valfirst', name: 'slf4j-test', version: '3.0.1')

vividus-engine/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ dependencies {
1818

1919
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
2020
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
21+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
2122
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
2223
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
2324
testImplementation(group: 'com.github.valfirst', name: 'slf4j-test', version: '3.0.1')

vividus-exporter-commons/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies {
1515
testImplementation (group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}")
1616
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
1717
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
18+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1819
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
1920
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
2021
}

vividus-extension-aws/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ dependencies {
88

99
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
1010
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
11+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1112
testImplementation(group: 'org.hamcrest', name: 'hamcrest', version: '3.0')
1213
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
1314
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')

vividus-extension-azure/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ dependencies {
66

77
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
88
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
9+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
910
testImplementation(group: 'org.hamcrest', name: 'hamcrest', version: '3.0')
1011
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
1112
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')

vividus-extension-selenium/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ configurations {
4646

4747
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
4848
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
49+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
4950
testImplementation(group: 'org.hamcrest', name: 'hamcrest', version: '3.0')
5051
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
5152
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')

vividus-extension-ui/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ project.description = 'VIVIDUS extension for plugins testing application with gr
1111

1212
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
1313
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
14+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1415
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
1516
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
1617
testImplementation(group: 'com.github.valfirst', name: 'slf4j-test', version: '3.0.1')

vividus-extension-visual-testing/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies {
1414

1515
testImplementation platform(group: 'org.junit', name: 'junit-bom', version: '5.11.4')
1616
testImplementation(group: 'org.junit.jupiter', name: 'junit-jupiter')
17+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1718
testImplementation platform(group: 'org.mockito', name: 'mockito-bom', version: '5.15.2')
1819
testImplementation(group: 'org.mockito', name: 'mockito-junit-jupiter')
1920
testImplementation(group: 'com.github.valfirst', name: 'slf4j-test', version: '3.0.1')

0 commit comments

Comments
 (0)