Skip to content

Commit

Permalink
fix(SBOMER-337): Allow insecure protocols in Gradle for our cache
Browse files Browse the repository at this point in the history
  • Loading branch information
vibe13 committed Feb 13, 2025
1 parent c09e4a1 commit d800ffd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions images/sbomer-generator/cyclonedx-init.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ allprojects {
maven {
url "http://${System.env.SBOMER_CACHE_SERVICE_HOST}:7070/maven/central/"
name "proxy-central"
allowInsecureProtocol = true
}
mavenCentral()

maven {
url "http://${System.env.SBOMER_CACHE_SERVICE_HOST}:7070/maven/redhat-ga/"
name "proxy-redhat-ga"
allowInsecureProtocol = true
}
maven {
url "https://maven.repository.redhat.com/ga/"
Expand All @@ -35,6 +37,7 @@ allprojects {
maven {
url "http://${System.env.SBOMER_CACHE_SERVICE_HOST}:7070/maven/indy-static/"
name "proxy-indy"
allowInsecureProtocol = true
}
maven {
url "https://${System.env.SBOMER_INDY_HOST}/api/content/maven/group/static/"
Expand Down

0 comments on commit d800ffd

Please sign in to comment.