Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
omerzi committed Jan 28, 2025
1 parent 8f782d4 commit 3fd319f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testdata/gradle/setupcmd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ plugins {
allprojects {
repositories {
all { repo ->
repo.allowInsecureProtocol = true // Allow plain HTTP for local Artifactory tests
// This check is for Gradle versions less than 8.0
if (repo.hasProperty('allowInsecureProtocol')) {
// For Gradle 8.0 and later this flag is mandatory to allow running against local Artifactory instances
repo.allowInsecureProtocol = true
}
}
}
}
Expand Down

0 comments on commit 3fd319f

Please sign in to comment.