o Treated URL scheme as case-insensitive as sugguested by RFC 2396, section 3.1. "Scheme component"

git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@641453 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java b/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
index 822d303..d38d83a 100644
--- a/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
+++ b/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
@@ -135,7 +135,7 @@
 
         String protocol = repo.getProtocol();
 
-        if ( protocol.equals( "scp" ) )
+        if ( protocol.equalsIgnoreCase( "scp" ) )
         {
             File sshFile = new File( System.getProperty( "user.home" ), ".ssh" );