Skip to content

Commit

Permalink
Fixed insecure maven urls in build
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma authored Sep 13, 2022
1 parent 574c767 commit e6bc6d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ publishing {
name = "Support for Solace"
email = "[email protected]"
organization = "Solace"
organizationUrl = "http://solace.community"
organizationUrl = "https://solace.community"
}
}
scm {
Expand All @@ -267,6 +267,7 @@ publishing {
def releasesUrl = uri('http://apps-jenkins:9090/nexus/content/repositories/releases')
def snapshotRepositoryUrl = uri('http://apps-jenkins:9090/nexus/content/repositories/snapshots')
url = isSnapshot ? snapshotRepositoryUrl : releasesUrl
allowInsecureProtocol = true
name = 'internal'
credentials {
username = project.properties[name + "Username"]
Expand Down

0 comments on commit e6bc6d3

Please sign in to comment.