diff --git a/scm/plugin.jelly b/scm/plugin.jelly
index 068cc139..efae2207 100644
--- a/scm/plugin.jelly
+++ b/scm/plugin.jelly
@@ -17,38 +17,53 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Using connection: ${pom.repository.developerConnection}
+
- ${pom.repository.connection}
-
- Invalid repository connection format
-
-
-
- Using SCM method: ${scmMethod}
-
-
-
-
-
-
-
-
-
-
-
- Using CVSROOT: ${maven.scm.cvs.root}
- Using module: ${maven.scm.cvs.module}
+
+
+
+
+
+ Using connection: ${pom.repository.connection}
+
+
+
+
+
+
+
+ ${conn}
+
+ Invalid repository connection format
+
+
+
+ Using SCM method: ${scmMethod}
+
+
+
+
+
+
+
+
+
+
+
+ Using CVSROOT: ${maven.scm.cvs.root}
+ Using module: ${maven.scm.cvs.module}
+
+
diff --git a/scm/plugin.properties b/scm/plugin.properties
index 823a71ac..e82599ce 100644
--- a/scm/plugin.properties
+++ b/scm/plugin.properties
@@ -2,8 +2,10 @@
maven.scm.method=
# Directory to checkout to
maven.scm.checkout.dir=${maven.build.dir}/checkouts
-# Set to true if you want to ignore the connection parameter in the POM
+# Set to true if you want to ignore the connection and developer connection parameters in the POM
maven.scm.ignore.pom.connection=false
+# Set to true if you want to ignore the developer connection parameter only in the POM
+maven.scm.ignore.pom.developerConnection=false
# Goals to run on checkout when bootstrapping a project
maven.scm.bootstrap.goals=
diff --git a/scm/xdocs/changes.xml b/scm/xdocs/changes.xml
index fcafe0bf..1aff7130 100644
--- a/scm/xdocs/changes.xml
+++ b/scm/xdocs/changes.xml
@@ -22,6 +22,9 @@
Update changes.xml version and release date on prepare.
+
+ Use developerConnection first, then standard connection when parsing connection from POM.
+