Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion dd-smoke-tests/rum/wildfly-15/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ ext {
repositories {
ivy {
url = 'https://download.jboss.org/'
// Restrict this repository to WildFly distribution artifacts only.
// Without this filter, Gradle may probe this host for unrelated dependencies
// (for example JUnit/Mockito), which makes the build flaky when the host is unreachable.
content {
includeGroup 'wildfly'
}
patternLayout {
// artifact '/[organisation]/[revision]/[module]/[organisation]-[module]-[revision].[ext]'
// we download the full EE profile and not the servlet minimal one
Expand Down Expand Up @@ -124,4 +130,3 @@ tasks.withType(Test).configureEach {
dependsOn 'deploy'
jvmArgs "-Ddatadog.smoketest.wildflyDir=${wildflyDir}"
}

7 changes: 6 additions & 1 deletion dd-smoke-tests/wildfly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ ext {
repositories {
ivy {
url = 'https://download.jboss.org/'
// Restrict this repository to WildFly distribution artifacts only.
// Without this filter, Gradle may probe this host for unrelated dependencies
// (for example JUnit/Mockito), which makes the build flaky when the host is unreachable.
content {
includeGroup 'wildfly'
}
patternLayout {
// artifact '/[organisation]/[revision]/[module]/[organisation]-[module]-[revision].[ext]'
// we download the full EE profile and not the servlet minimal one
Expand Down Expand Up @@ -127,4 +133,3 @@ tasks.withType(Test).configureEach {
dependsOn 'deploy'
jvmArgs "-Ddatadog.smoketest.wildflyDir=${wildflyDir}"
}

Loading