[SM-2147]use 8181 as default port to keep it same as current container

git-svn-id: https://svn.apache.org/repos/asf/servicemix/archetypes/trunk@1297913 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/client/Client.java b/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/client/Client.java
index dcd5341..49d73c5 100644
--- a/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/client/Client.java
+++ b/servicemix-cxf-code-first-osgi-bundle/src/main/resources/archetype-resources/src/main/java/client/Client.java
@@ -14,7 +14,7 @@
         if (args != null && args.length > 0 && !"".equals(args[0])) {
             factory.setAddress(args[0]);
         } else {
-            factory.setAddress("http://localhost:8080/cxf/PersonServiceCF");
+            factory.setAddress("http://localhost:8181/cxf/PersonServiceCF");
         }
        
         Person client = (Person)factory.create();