Skip to content

Commit 75a070e

Browse files
Fix SCM URLs for release process
1 parent e553a49 commit 75a070e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

pom.xml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
<description>Tunnel to run TestingBot Selenium tests on your local machine</description>
2424
<url>https://testingbot.com</url>
2525
<scm>
26-
<connection>scm:git:git@github.com:testingbot/Testingbot-Tunnel.git</connection>
27-
<developerConnection>scm:git:git@github.com:testingbot/Testingbot-Tunnel.git</developerConnection>
28-
<url>git@github.com:testingbot/Testingbot-Tunnel.git</url>
26+
<connection>scm:git:https://github.com/testingbot/Testingbot-Tunnel.git</connection>
27+
<developerConnection>scm:git:https://github.com/testingbot/Testingbot-Tunnel.git</developerConnection>
28+
<url>https://github.com/testingbot/Testingbot-Tunnel.git</url>
2929
<tag>HEAD</tag>
3030
</scm>
3131

@@ -175,6 +175,16 @@
175175
</execution>
176176
</executions>
177177
</plugin>
178+
<plugin>
179+
<groupId>org.apache.maven.plugins</groupId>
180+
<artifactId>maven-release-plugin</artifactId>
181+
<version>3.0.1</version>
182+
<configuration>
183+
<scmCommentPrefix>[maven-release-plugin]</scmCommentPrefix>
184+
<tagNameFormat>v@{project.version}</tagNameFormat>
185+
<connectionUrl>scm:git:https://github.com/testingbot/Testingbot-Tunnel.git</connectionUrl>
186+
</configuration>
187+
</plugin>
178188
</plugins>
179189
</build>
180190
<dependencies>

0 commit comments

Comments
 (0)