From e6bc6d32a3d45a1fb9491b8274473eac16dbec8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Czoma?= Date: Tue, 13 Sep 2022 11:46:42 -0400 Subject: [PATCH] Fixed insecure maven urls in build --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b5d74f0..f276caf 100644 --- a/build.gradle +++ b/build.gradle @@ -251,7 +251,7 @@ publishing { name = "Support for Solace" email = "support@solace.com" organization = "Solace" - organizationUrl = "http://solace.community" + organizationUrl = "https://solace.community" } } scm { @@ -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"]