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 df6adb3 commit bc8bbe2Copy full SHA for bc8bbe2
dd-smoke-tests/maven/build.gradle
@@ -1,3 +1,6 @@
1
+import java.time.Duration
2
+import java.time.temporal.ChronoUnit
3
+
4
plugins {
5
id 'com.gradleup.shadow'
6
}
@@ -21,6 +24,10 @@ tasks.withType(Test).configureEach {
21
24
dependsOn "shadowJar"
22
25
jvmArgs "-Ddatadog.smoketest.maven.jar.path=${tasks.shadowJar.archiveFile.get()}"
23
26
27
+ // overriding the default timeout set in configure_tests.gradle, as Maven smoke
28
+ // tests might run for a longer duration
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
33
environment "MAVEN_REPOSITORY_PROXY", project.property("mavenRepositoryProxy")
0 commit comments