File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 99repositories {
1010 ivy {
1111 url = ' https://download.jboss.org/'
12+ // Restrict this repository to WildFly distribution artifacts only.
13+ // Without this filter, Gradle may probe this host for unrelated dependencies
14+ // (for example JUnit/Mockito), which makes the build flaky when the host is unreachable.
15+ content {
16+ includeGroup ' wildfly'
17+ }
1218 patternLayout {
1319 // artifact '/[organisation]/[revision]/[module]/[organisation]-[module]-[revision].[ext]'
1420 // we download the full EE profile and not the servlet minimal one
@@ -124,4 +130,3 @@ tasks.withType(Test).configureEach {
124130 dependsOn ' deploy'
125131 jvmArgs " -Ddatadog.smoketest.wildflyDir=${ wildflyDir} "
126132}
127-
Original file line number Diff line number Diff line change 99repositories {
1010 ivy {
1111 url = ' https://download.jboss.org/'
12+ // Restrict this repository to WildFly distribution artifacts only.
13+ // Without this filter, Gradle may probe this host for unrelated dependencies
14+ // (for example JUnit/Mockito), which makes the build flaky when the host is unreachable.
15+ content {
16+ includeGroup ' wildfly'
17+ }
1218 patternLayout {
1319 // artifact '/[organisation]/[revision]/[module]/[organisation]-[module]-[revision].[ext]'
1420 // we download the full EE profile and not the servlet minimal one
@@ -127,4 +133,3 @@ tasks.withType(Test).configureEach {
127133 dependsOn ' deploy'
128134 jvmArgs " -Ddatadog.smoketest.wildflyDir=${ wildflyDir} "
129135}
130-
You can’t perform that action at this time.
0 commit comments