SLING-7162 - Update SCM information in all POM files to reference Git

update-scm-info.sh - correct url
diff --git a/scripts/update-scm-info.sh b/scripts/update-scm-info.sh
index 1c13717..5bedd14 100755
--- a/scripts/update-scm-info.sh
+++ b/scripts/update-scm-info.sh
@@ -17,7 +17,7 @@
 
 sed -i "s#<connection>scm.*</connection>#<connection>scm:git:${scm_base}</conncetion>#" pom.xml
 sed -i "s#<developerConnection>scm.*</developerConnection>#<developerConnection>scm:git:${scm_base}</developerConnection>#" pom.xml
-sed -i "s#<url>.*svn.apache.org.*</url>#<url>https://gitbox.apache.org/repos/asf?p=${module_name}.git</url>#" pom.xml
+sed -i "s#<url>.*svn.apache.org.*</url>#<url>https://gitbox.apache.org/repos/asf?p=${module_name}</url>#" pom.xml
 
 git add pom.xml
 git commit -m 'SLING-7162 - Update SCM information in all POM files to reference Git'