Browse Source

Stop using unencrypted git protocol in build.gradle (#36330)

GitHub is removing support for unencrypted git soon: https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git
Alexander Köplinger 4 years ago
parent
commit
95403c764d

+ 3 - 3
src/SignalR/clients/java/signalr/core/build.gradle

@@ -40,9 +40,9 @@ task generatePOM {
                 }
             }
             scm {
-                connection 'scm:git:git://github.com/dotnet/aspnetcore.git'
-                developerConnection 'scm:git:git://github.com/dotnet/aspnetcore.git'
-                url 'http://github.com/dotnet/aspnetcore/tree/main'
+                connection 'scm:git:https://github.com/dotnet/aspnetcore.git'
+                developerConnection 'scm:git:https://github.com/dotnet/aspnetcore.git'
+                url 'https://github.com/dotnet/aspnetcore/tree/main'
             }
             developers {
                 developer {

+ 3 - 3
src/SignalR/clients/java/signalr/messagepack/build.gradle

@@ -39,9 +39,9 @@ task generatePOM {
                 }
             }
             scm {
-                connection 'scm:git:git://github.com/dotnet/aspnetcore.git'
-                developerConnection 'scm:git:git://github.com/dotnet/aspnetcore.git'
-                url 'http://github.com/dotnet/aspnetcore/tree/main'
+                connection 'scm:git:https://github.com/dotnet/aspnetcore.git'
+                developerConnection 'scm:git:https://github.com/dotnet/aspnetcore.git'
+                url 'https://github.com/dotnet/aspnetcore/tree/main'
             }
             developers {
                 developer {