Skip to content

Commit 8dcdf67

Browse files
committed
Fix SCM URLs
Use proper SSH URL for developerConnection, use HTTPs for regular connection
1 parent fabb619 commit 8dcdf67

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

pom.xml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
<description>This library provides encryption/decryption functionality with pluggable ciphers and password providers</description>
1717

1818
<scm>
19-
<connection>scm:git:git@github.com:codehaus-plexus/plexus-sec-dispatcher.git</connection>
20-
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-sec-dispatcher.git</developerConnection>
21-
<tag>HEAD</tag>
22-
<url>https://github.com/codehaus-plexus/plexus-sec-dispatcher.git</url>
19+
<connection>scm:git:https://github.com/codehaus-plexus/plexus-sec-dispatcher.git</connection>
20+
<developerConnection>scm:git:ssh://[email protected]:codehaus-plexus/plexus-sec-dispatcher.git</developerConnection>
21+
<tag>master</tag>
22+
<url>https://github.com/codehaus-plexus/plexus-sec-dispatcher/tree/${project.scm.tag}/</url>
2323
</scm>
24+
2425
<issueManagement>
2526
<system>jira</system>
2627
<url>https://github.com/codehaus-plexus/plexus-sec-dispatcher/issues</url>
@@ -74,6 +75,14 @@
7475
</dependencies>
7576

7677
<build>
78+
<pluginManagement>
79+
<plugins>
80+
<plugin>
81+
<artifactId>maven-site-plugin</artifactId>
82+
<version>4.0.0-M17-SNAPSHOT</version>
83+
</plugin>
84+
</plugins>
85+
</pluginManagement>
7786
<plugins>
7887
<plugin>
7988
<groupId>org.eclipse.sisu</groupId>

0 commit comments

Comments
 (0)