We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d40285 commit f50fa51Copy full SHA for f50fa51
dd-smoke-tests/maven/build.gradle
@@ -1,4 +1,5 @@
1
import java.time.Duration
2
+import java.time.temporal.ChronoUnit
3
4
plugins {
5
id "com.gradleup.shadow"
@@ -25,7 +26,7 @@ tasks.withType(Test).configureEach {
25
26
27
// overriding the default timeout set in configure_tests.gradle, as Maven smoke
28
// tests might run for a longer duration
- timeout = Duration.ofMinutes(20)
29
+ timeout = Duration.of(20, ChronoUnit.MINUTES)
30
31
if (project.hasProperty("mavenRepositoryProxy")) {
32
// propagate proxy URL to tests, to then propagate it to nested Gradle builds
0 commit comments