From 3d4157ad6d1f210c346dc0706e65b600b2bbf0e6 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 2 Oct 2019 09:55:37 +0100 Subject: [PATCH] Correct SCM URLs in published poms Previously, Maven's default behaviour was relied up which resulted in the artifact ID being appended to each URL as it was inherited. This behaviour can only be disabled in Maven 3.6 and later, a version that we cannot use due to an incompatibility with the Flatten Plugin. This commit works around Maven's default behaviour by defining properties for the SCM URL, connection, and developer connection and then explicitly defining the settings in each pom using these properties. The explicit definition of the properties in each pom prevents them being inherited from the parent, thereby disabling the unwanted appending of the artifact ID to the URL. Fixes gh-18328 --- .../spring-boot-actuator-autoconfigure/pom.xml | 5 +++++ spring-boot-project/spring-boot-actuator/pom.xml | 5 +++++ spring-boot-project/spring-boot-autoconfigure/pom.xml | 5 +++++ spring-boot-project/spring-boot-cli/pom.xml | 5 +++++ spring-boot-project/spring-boot-devtools/pom.xml | 5 +++++ spring-boot-project/spring-boot-docs/pom.xml | 5 +++++ spring-boot-project/spring-boot-parent/pom.xml | 9 ++++++--- .../spring-boot-properties-migrator/pom.xml | 5 +++++ spring-boot-project/spring-boot-starters/pom.xml | 5 +++++ .../spring-boot-starter-activemq/pom.xml | 5 +++++ .../spring-boot-starter-actuator/pom.xml | 5 +++++ .../spring-boot-starter-amqp/pom.xml | 5 +++++ .../spring-boot-starters/spring-boot-starter-aop/pom.xml | 5 +++++ .../spring-boot-starter-artemis/pom.xml | 5 +++++ .../spring-boot-starter-batch/pom.xml | 5 +++++ .../spring-boot-starter-cache/pom.xml | 5 +++++ .../spring-boot-starter-cloud-connectors/pom.xml | 5 +++++ .../spring-boot-starter-data-cassandra-reactive/pom.xml | 5 +++++ .../spring-boot-starter-data-cassandra/pom.xml | 5 +++++ .../spring-boot-starter-data-couchbase-reactive/pom.xml | 5 +++++ .../spring-boot-starter-data-couchbase/pom.xml | 5 +++++ .../spring-boot-starter-data-elasticsearch/pom.xml | 5 +++++ .../spring-boot-starter-data-jdbc/pom.xml | 5 +++++ .../spring-boot-starter-data-jpa/pom.xml | 5 +++++ .../spring-boot-starter-data-ldap/pom.xml | 5 +++++ .../spring-boot-starter-data-mongodb-reactive/pom.xml | 5 +++++ .../spring-boot-starter-data-mongodb/pom.xml | 5 +++++ .../spring-boot-starter-data-neo4j/pom.xml | 5 +++++ .../spring-boot-starter-data-redis-reactive/pom.xml | 5 +++++ .../spring-boot-starter-data-redis/pom.xml | 5 +++++ .../spring-boot-starter-data-rest/pom.xml | 5 +++++ .../spring-boot-starter-data-solr/pom.xml | 5 +++++ .../spring-boot-starter-freemarker/pom.xml | 5 +++++ .../spring-boot-starter-groovy-templates/pom.xml | 5 +++++ .../spring-boot-starter-hateoas/pom.xml | 5 +++++ .../spring-boot-starter-integration/pom.xml | 5 +++++ .../spring-boot-starter-jdbc/pom.xml | 5 +++++ .../spring-boot-starter-jersey/pom.xml | 5 +++++ .../spring-boot-starter-jetty/pom.xml | 5 +++++ .../spring-boot-starter-jooq/pom.xml | 5 +++++ .../spring-boot-starter-json/pom.xml | 5 +++++ .../spring-boot-starter-jta-atomikos/pom.xml | 5 +++++ .../spring-boot-starter-jta-bitronix/pom.xml | 5 +++++ .../spring-boot-starter-log4j2/pom.xml | 5 +++++ .../spring-boot-starter-logging/pom.xml | 5 +++++ .../spring-boot-starter-mail/pom.xml | 5 +++++ .../spring-boot-starter-mustache/pom.xml | 5 +++++ .../spring-boot-starter-oauth2-client/pom.xml | 5 +++++ .../spring-boot-starter-oauth2-resource-server/pom.xml | 5 +++++ .../spring-boot-starter-quartz/pom.xml | 5 +++++ .../spring-boot-starter-reactor-netty/pom.xml | 5 +++++ .../spring-boot-starter-security/pom.xml | 5 +++++ .../spring-boot-starter-test/pom.xml | 5 +++++ .../spring-boot-starter-thymeleaf/pom.xml | 5 +++++ .../spring-boot-starter-tomcat/pom.xml | 5 +++++ .../spring-boot-starter-undertow/pom.xml | 5 +++++ .../spring-boot-starter-validation/pom.xml | 5 +++++ .../spring-boot-starter-web-services/pom.xml | 5 +++++ .../spring-boot-starters/spring-boot-starter-web/pom.xml | 5 +++++ .../spring-boot-starter-webflux/pom.xml | 5 +++++ .../spring-boot-starter-websocket/pom.xml | 5 +++++ .../spring-boot-starters/spring-boot-starter/pom.xml | 5 +++++ .../spring-boot-test-autoconfigure/pom.xml | 5 +++++ spring-boot-project/spring-boot-test/pom.xml | 5 +++++ spring-boot-project/spring-boot-tools/pom.xml | 5 +++++ .../spring-boot-tools/spring-boot-antlib/pom.xml | 5 +++++ .../spring-boot-autoconfigure-processor/pom.xml | 5 +++++ .../spring-boot-configuration-metadata/pom.xml | 5 +++++ .../spring-boot-configuration-processor/pom.xml | 5 +++++ .../spring-boot-tools/spring-boot-gradle-plugin/pom.xml | 5 +++++ .../spring-boot-tools/spring-boot-loader-tools/pom.xml | 5 +++++ .../spring-boot-tools/spring-boot-loader/pom.xml | 5 +++++ .../spring-boot-tools/spring-boot-maven-plugin/pom.xml | 5 +++++ .../spring-boot-tools/spring-boot-test-support/pom.xml | 5 +++++ spring-boot-project/spring-boot/pom.xml | 5 +++++ 75 files changed, 376 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml b/spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml index 99da3c7d09d..7bfc81ed4bc 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-actuator/pom.xml b/spring-boot-project/spring-boot-actuator/pom.xml index 3be8ac59809..c489f527d3b 100644 --- a/spring-boot-project/spring-boot-actuator/pom.xml +++ b/spring-boot-project/spring-boot-actuator/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-autoconfigure/pom.xml b/spring-boot-project/spring-boot-autoconfigure/pom.xml index 60f3073e9ec..defca3a0187 100755 --- a/spring-boot-project/spring-boot-autoconfigure/pom.xml +++ b/spring-boot-project/spring-boot-autoconfigure/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-cli/pom.xml b/spring-boot-project/spring-boot-cli/pom.xml index 27c36c62137..9fc41415a97 100644 --- a/spring-boot-project/spring-boot-cli/pom.xml +++ b/spring-boot-project/spring-boot-cli/pom.xml @@ -18,6 +18,11 @@ default ${project.build.directory}/generated-resources/org/springframework/boot/cli/compiler/dependencies + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-devtools/pom.xml b/spring-boot-project/spring-boot-devtools/pom.xml index 3f683bc32a8..fc2fa0e143b 100644 --- a/spring-boot-project/spring-boot-devtools/pom.xml +++ b/spring-boot-project/spring-boot-devtools/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-docs/pom.xml b/spring-boot-project/spring-boot-docs/pom.xml index ac42e49b86e..7ca126fb3d1 100644 --- a/spring-boot-project/spring-boot-docs/pom.xml +++ b/spring-boot-project/spring-boot-docs/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-parent/pom.xml b/spring-boot-project/spring-boot-parent/pom.xml index 2965a014fbf..8c9483330e6 100644 --- a/spring-boot-project/spring-boot-parent/pom.xml +++ b/spring-boot-project/spring-boot-parent/pom.xml @@ -20,6 +20,9 @@ ${basedir}/../.. false + https://github.com/spring-projects/spring-boot + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git 1.8 UTF-8 UTF-8 @@ -29,9 +32,9 @@ 1.10.6 - https://github.com/spring-projects/spring-boot - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git + ${git.url} + ${git.connection} + ${git.developerConnection} Github diff --git a/spring-boot-project/spring-boot-properties-migrator/pom.xml b/spring-boot-project/spring-boot-properties-migrator/pom.xml index f99ec9ff493..da34e62b70e 100644 --- a/spring-boot-project/spring-boot-properties-migrator/pom.xml +++ b/spring-boot-project/spring-boot-properties-migrator/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-starters/pom.xml b/spring-boot-project/spring-boot-starters/pom.xml index 10993a26305..d59796bea12 100644 --- a/spring-boot-project/spring-boot-starters/pom.xml +++ b/spring-boot-project/spring-boot-starters/pom.xml @@ -16,6 +16,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + spring-boot-starter spring-boot-starter-activemq diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-activemq/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-activemq/pom.xml index dfff06fd790..8d5e0ff2591 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-activemq/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-activemq/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-actuator/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-actuator/pom.xml index 512b0952224..c381b6c5df3 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-actuator/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-actuator/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-amqp/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-amqp/pom.xml index 3b22029953b..d3d470ad709 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-amqp/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-amqp/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-aop/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-aop/pom.xml index 91b67d874a3..bb697fb54fb 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-aop/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-aop/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/pom.xml index 11268e976b0..fa011ec8fe0 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-artemis/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-batch/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-batch/pom.xml index 2968257e3d1..24d24994959 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-batch/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-batch/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-cache/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-cache/pom.xml index 4c5b8317f5b..45c6796929d 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-cache/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-cache/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-cloud-connectors/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-cloud-connectors/pom.xml index d05578b4050..ae10865b328 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-cloud-connectors/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-cloud-connectors/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/pom.xml index 44509e3ba5d..8202656b75e 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra-reactive/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/pom.xml index b19c01a1a81..12524d9c2d1 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-cassandra/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase-reactive/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase-reactive/pom.xml index 2c90bc9a392..6e159e0447a 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase-reactive/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase-reactive/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase/pom.xml index ae881160bfa..62f40f704ac 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-elasticsearch/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-elasticsearch/pom.xml index 2d19ee5d11d..18e4b779b79 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-elasticsearch/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-elasticsearch/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jdbc/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jdbc/pom.xml index 0f2f15b0e79..0e6e909c8c1 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jdbc/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jdbc/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml index 7a275f43a5d..d21bdcf8b98 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jpa/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-ldap/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-ldap/pom.xml index 65cb8f546f6..fbdda52b11a 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-ldap/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-ldap/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb-reactive/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb-reactive/pom.xml index 0c8e747f173..54162c3f1a6 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb-reactive/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb-reactive/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb/pom.xml index abb61460bca..0c6824c04d4 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-mongodb/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-neo4j/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-neo4j/pom.xml index aabc4bb3541..5beaa0a2714 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-neo4j/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-neo4j/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml index 43e647292c4..adef6cad1ba 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/pom.xml index a797c6010eb..84b5b9e3610 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-rest/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-rest/pom.xml index a03480de98a..fb21cd4b301 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-rest/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-rest/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-solr/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-solr/pom.xml index e491064ef46..bb1899a431c 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-solr/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-solr/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-freemarker/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-freemarker/pom.xml index daf9d8b9eea..f480476e442 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-freemarker/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-freemarker/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml index 5941fa47c03..0ab1b3459e5 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-hateoas/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-hateoas/pom.xml index e034fa4db9d..d3d7a3547e2 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-hateoas/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-hateoas/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-integration/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-integration/pom.xml index 5105cebf33e..6918380b3f4 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-integration/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-integration/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/pom.xml index adc9c3f3cbf..5c1a9978583 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-jersey/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-jersey/pom.xml index b931c5d95b9..b308cffcaac 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-jersey/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-jersey/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-jetty/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-jetty/pom.xml index a1779121b50..6cdb07fe361 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-jetty/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-jetty/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../../.. 3.1.0 + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.eclipse.jetty diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-jooq/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-jooq/pom.xml index e8761e5996e..0f944fee477 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-jooq/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-jooq/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-json/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-json/pom.xml index 823ff8f5324..ba198fc5f17 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-json/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-json/pom.xml @@ -12,6 +12,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-atomikos/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-atomikos/pom.xml index be59495bcb4..45004aaf9a4 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-atomikos/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-atomikos/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-bitronix/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-bitronix/pom.xml index 8d4c9889929..520a718b351 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-bitronix/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-jta-bitronix/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-log4j2/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-log4j2/pom.xml index 616fe48290e..3f6bb33c49f 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-log4j2/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-log4j2/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.apache.logging.log4j diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-logging/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-logging/pom.xml index 2b32da1d46e..80dc82f26f8 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-logging/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-logging/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + ch.qos.logback diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-mail/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-mail/pom.xml index 67852452730..f4c7834b888 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-mail/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-mail/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-mustache/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-mustache/pom.xml index d8ca6eff598..c71dcaa464e 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-mustache/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-mustache/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-client/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-client/pom.xml index 32cd3b30fd6..7d5da61b005 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-client/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-client/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-resource-server/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-resource-server/pom.xml index c2c552237b8..0a4f791f0f8 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-resource-server/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-oauth2-resource-server/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-quartz/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-quartz/pom.xml index 03fb9a3663d..7edae6ae0d4 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-quartz/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-quartz/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-reactor-netty/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-reactor-netty/pom.xml index 01b2038fe6f..07e58c12cef 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-reactor-netty/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-reactor-netty/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + io.projectreactor.netty diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-security/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-security/pom.xml index e3e9cd37fbb..7b3112de86a 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-security/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-security/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-test/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-test/pom.xml index 60c145917ee..0a929903ecf 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-test/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-test/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml index a1d17bd52bd..303066ffb24 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-tomcat/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-tomcat/pom.xml index 1e28acde71e..4d77c9129dd 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-tomcat/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-tomcat/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + javax.annotation diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-undertow/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-undertow/pom.xml index 797218b98ba..5b47bd728ef 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-undertow/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-undertow/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + io.undertow diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-validation/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-validation/pom.xml index d464692d326..d4f82113b44 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-validation/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-validation/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/pom.xml index 17ad3df4473..6f27c2bcc05 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-web/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-web/pom.xml index 56154ad3f22..10c9188c795 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-web/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-web/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-webflux/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-webflux/pom.xml index 3352da07e5e..e7819fd31ad 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-webflux/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-webflux/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/pom.xml index b40b33aa8a1..6e6755ce7d6 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter/pom.xml index 2ff9f77eae5..2f7c514ae3b 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter/pom.xml +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-test-autoconfigure/pom.xml b/spring-boot-project/spring-boot-test-autoconfigure/pom.xml index 83769d1997d..6f60f98ef42 100644 --- a/spring-boot-project/spring-boot-test-autoconfigure/pom.xml +++ b/spring-boot-project/spring-boot-test-autoconfigure/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-test/pom.xml b/spring-boot-project/spring-boot-test/pom.xml index 2c135a67090..37498ea8fdb 100644 --- a/spring-boot-project/spring-boot-test/pom.xml +++ b/spring-boot-project/spring-boot-test/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/pom.xml b/spring-boot-project/spring-boot-tools/pom.xml index 892f2ad1f21..d932dd2d99d 100644 --- a/spring-boot-project/spring-boot-tools/pom.xml +++ b/spring-boot-project/spring-boot-tools/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + spring-boot-antlib spring-boot-autoconfigure-processor diff --git a/spring-boot-project/spring-boot-tools/spring-boot-antlib/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-antlib/pom.xml index 5771365f711..d40a79a8ead 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-antlib/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-antlib/pom.xml @@ -14,6 +14,11 @@ ${basedir}/../../.. 1.9.3 + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-autoconfigure-processor/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-autoconfigure-processor/pom.xml index 8c95c516f89..6e9fd42e10c 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-autoconfigure-processor/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-autoconfigure-processor/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/pom.xml index 87443be9d02..68862f4c88b 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/pom.xml @@ -12,6 +12,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/pom.xml index 89b525dfd7b..ab3d9e6b424 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/pom.xml index ffec6fcaf2d..e0e1a0c3350 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/pom.xml @@ -18,6 +18,11 @@ false 1.2.20 + + ${git.url} + ${git.connection} + ${git.developerConnection} + org.springframework.boot diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/pom.xml index ba06373a5cf..889fc90bfe5 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/pom.xml @@ -12,6 +12,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-loader/pom.xml index f3c8bba936a..4f821144ba7 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/pom.xml index da9088f86dc..36d042b3996 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../../.. 3.3.9 + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot-tools/spring-boot-test-support/pom.xml b/spring-boot-project/spring-boot-tools/spring-boot-test-support/pom.xml index 49ad7a5fed8..12e910c20d1 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-test-support/pom.xml +++ b/spring-boot-project/spring-boot-tools/spring-boot-test-support/pom.xml @@ -13,6 +13,11 @@ ${basedir}/../../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} + diff --git a/spring-boot-project/spring-boot/pom.xml b/spring-boot-project/spring-boot/pom.xml index e0716d3fb5d..9006f791084 100644 --- a/spring-boot-project/spring-boot/pom.xml +++ b/spring-boot-project/spring-boot/pom.xml @@ -15,6 +15,11 @@ ${basedir}/../.. + + ${git.url} + ${git.connection} + ${git.developerConnection} +