Skip to content
Draft
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
9 changes: 8 additions & 1 deletion dd-smoke-tests/springboot-tomcat/application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,16 @@ ext {
serverExtension = 'zip'
}

// Route artifact downloads through MASS staging to validate HEAD support.
// DO NOT MERGE — staging validation only.
def massArtifactUrl = { String upstreamArtifactUrl ->
def massReadUrl = 'https://mass-read.us1.staging.dog'
return "${massReadUrl}/internal/artifact/${upstreamArtifactUrl}"
}

repositories {
ivy {
url = 'https://dlcdn.apache.org'
url = massArtifactUrl('dlcdn.apache.org')
patternLayout {
artifact '/[organisation]/[module]/v[revision]/bin/apache-[organisation]-[revision].[ext]'
}
Expand Down
Loading