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 0f9b46c commit 6d40285Copy full SHA for 6d40285
dd-smoke-tests/maven/build.gradle
@@ -1,3 +1,5 @@
1
+import java.time.Duration
2
+
3
plugins {
4
id "com.gradleup.shadow"
5
}
@@ -21,6 +23,10 @@ tasks.withType(Test).configureEach {
21
23
dependsOn "shadowJar"
22
24
jvmArgs "-Ddatadog.smoketest.maven.jar.path=${tasks.shadowJar.archiveFile.get()}"
25
26
+ // overriding the default timeout set in configure_tests.gradle, as Maven smoke
27
+ // tests might run for a longer duration
28
+ timeout = Duration.ofMinutes(20)
29
30
if (project.hasProperty("mavenRepositoryProxy")) {
31
// propagate proxy URL to tests, to then propagate it to nested Gradle builds
32
environment "MAVEN_REPOSITORY_PROXY", project.property("mavenRepositoryProxy")
0 commit comments