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
14 changes: 7 additions & 7 deletions dd-smoke-tests/rum/wildfly-15/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ ext {
serverName = 'wildfly'
//serverModule = 'servlet'
serverModule = 'wildfly'
serverVersion = '15.0.0.Final'
serverVersion = '26.1.3.Final'
serverExtension = 'zip'
}

repositories {
ivy {
url = 'https://download.jboss.org/'
url = 'https://github.com/wildfly/wildfly/releases/download/'
// 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
artifact '/[organisation]/[revision]/[organisation]-[revision].[ext]'
// GitHub release assets are published under /<version>/wildfly-<version>.zip
// while the dependency coordinates keep the "wildfly" group/module.
artifact '/[revision]/[module]-[revision].[ext]'
}
metadataSources {
it.artifact()
Expand All @@ -42,8 +42,8 @@ configurations {
}

dependencies {
// uses the ivy repository url to download the wildfly servlet zip
// organisation = serverName, revision = serverVersion, module = serverModule, ext = serverExtension
// Uses the ivy repository url to download the WildFly server zip.
// organisation = serverName, module = serverModule, revision = serverVersion, ext = serverExtension
serverFile "${serverName}:${serverModule}:${serverVersion}@${serverExtension}"
testImplementation project(':dd-smoke-tests:rum')
testImplementation project(':dd-smoke-tests')
Expand Down
14 changes: 7 additions & 7 deletions dd-smoke-tests/wildfly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ ext {
serverName = 'wildfly'
//serverModule = 'servlet'
serverModule = 'wildfly'
serverVersion = '15.0.0.Final'
serverVersion = '26.1.3.Final'
serverExtension = 'zip'
}

repositories {
ivy {
url = 'https://download.jboss.org/'
url = 'https://github.com/wildfly/wildfly/releases/download/'
// 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
artifact '/[organisation]/[revision]/[organisation]-[revision].[ext]'
// GitHub release assets are published under /<version>/wildfly-<version>.zip
// while the dependency coordinates keep the "wildfly" group/module.
artifact '/[revision]/[module]-[revision].[ext]'
}
metadataSources {
it.artifact()
Expand All @@ -42,8 +42,8 @@ configurations {
}

dependencies {
// uses the ivy repository url to download the wildfly servlet zip
// organisation = serverName, revision = serverVersion, module = serverModule, ext = serverExtension
// Uses the ivy repository url to download the WildFly server zip.
// organisation = serverName, module = serverModule, revision = serverVersion, ext = serverExtension
serverFile "${serverName}:${serverModule}:${serverVersion}@${serverExtension}"

testImplementation project(':dd-smoke-tests')
Expand Down
Loading