File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ plugins {
1818 id(" com.gradle.plugin-publish" ) version " 1.0.0-rc-3"
1919 id(" com.cinnober.gradle.semver-git" ) version " 3.0.0"
2020 id(" org.jetbrains.dokka" ) version " 1.7.10"
21- id(" org.gradle.test-retry" ) version " 1.5.0"
2221}
2322
2423group = " com.github.node-gradle"
@@ -83,13 +82,6 @@ tasks.withType(Test::class) {
8382 exceptionFormat = TestExceptionFormat .FULL
8483 }
8584
86- retry {
87- maxRetries.set(3 )
88- filter {
89- includeClasses.add(" *_integTest" )
90- }
91- }
92-
9385 develocity {
9486 testDistribution {
9587 enabled.set(project.properties[" com.github.gradle.node.testdistribution" ].toString().toBoolean())
@@ -187,6 +179,13 @@ tasks.wrapper {
187179
188180tasks.withType<Test >().configureEach {
189181 jvmArgs(" --add-opens=java.base/java.util=ALL-UNNAMED" )
182+
183+ develocity.testRetry {
184+ maxRetries.set(3 )
185+ filter {
186+ includeClasses.add(" *_integTest" )
187+ }
188+ }
190189}
191190publishing.publications.withType<MavenPublication >().configureEach {
192191 pom.licenses {
Original file line number Diff line number Diff line change 11plugins {
2- id(" com.gradle.develocity" ) version(" 4.1 " )
2+ id(" com.gradle.develocity" ) version(" 4.3.2 " )
33 id(" com.gradle.common-custom-user-data-gradle-plugin" ) version(" 2.3" )
44}
55
You can’t perform that action at this time.
0 commit comments