improve the scripts of camel-example-spring-security
diff --git a/examples/camel-example-spring-security/client/access-admin-as-bob.sh b/examples/camel-example-spring-security/client/access-admin-as-bob.sh
index 1ba3e31..206ce32 100755
--- a/examples/camel-example-spring-security/client/access-admin-as-bob.sh
+++ b/examples/camel-example-spring-security/client/access-admin-as-bob.sh
@@ -18,5 +18,6 @@
 
 rm -rf work
 mkdir work
-wget --http-user=bob --http-password=bobspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel/admin
+POM_VERSION=$(../../../mvnw -f ../pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)
+wget --http-user=bob --http-password=bobspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel-example-spring-security-$POM_VERSION/camel/admin
 cat -n work/* | less
diff --git a/examples/camel-example-spring-security/client/access-admin-as-jim.sh b/examples/camel-example-spring-security/client/access-admin-as-jim.sh
index 314da06..48bf524 100755
--- a/examples/camel-example-spring-security/client/access-admin-as-jim.sh
+++ b/examples/camel-example-spring-security/client/access-admin-as-jim.sh
@@ -18,5 +18,6 @@
 
 rm -rf work
 mkdir work
-wget --http-user=jim --http-password=jimspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel/admin
+POM_VERSION=$(../../../mvnw -f ../pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)
+wget --http-user=jim --http-password=jimspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel-example-spring-security-$POM_VERSION/camel/admin
 cat -n work/* | less
diff --git a/examples/camel-example-spring-security/client/access-admin-no-auth.sh b/examples/camel-example-spring-security/client/access-admin-no-auth.sh
new file mode 100755
index 0000000..ee44c5b
--- /dev/null
+++ b/examples/camel-example-spring-security/client/access-admin-no-auth.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+rm -rf work
+mkdir work
+POM_VERSION=$(../../../mvnw -f ../pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)
+wget --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel-example-spring-security-$POM_VERSION/camel/admin
+cat -n work/* | less
diff --git a/examples/camel-example-spring-security/client/access-user-as-bob.sh b/examples/camel-example-spring-security/client/access-user-as-bob.sh
new file mode 100755
index 0000000..027f7d3
--- /dev/null
+++ b/examples/camel-example-spring-security/client/access-user-as-bob.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+rm -rf work
+mkdir work
+POM_VERSION=$(../../../mvnw -f ../pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)
+wget --http-user=bob --http-password=bobspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel-example-spring-security-$POM_VERSION/camel/user
+cat -n work/* | less
diff --git a/examples/camel-example-spring-security/client/access-user-as-jim.sh b/examples/camel-example-spring-security/client/access-user-as-jim.sh
index db0f3d3..e47bbd0 100755
--- a/examples/camel-example-spring-security/client/access-user-as-jim.sh
+++ b/examples/camel-example-spring-security/client/access-user-as-jim.sh
@@ -18,5 +18,6 @@
 
 rm -rf work
 mkdir work
-wget --http-user=jim --http-password=jimspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel/user
+POM_VERSION=$(../../../mvnw -f ../pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)
+wget --http-user=jim --http-password=jimspassword --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel-example-spring-security-$POM_VERSION/camel/user
 cat -n work/* | less
diff --git a/examples/camel-example-spring-security/client/access-user-no-auth.sh b/examples/camel-example-spring-security/client/access-user-no-auth.sh
index 748d626..3fdc1e7 100755
--- a/examples/camel-example-spring-security/client/access-user-no-auth.sh
+++ b/examples/camel-example-spring-security/client/access-user-no-auth.sh
@@ -18,5 +18,6 @@
 
 rm -rf work
 mkdir work
-wget --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel/user
+POM_VERSION=$(../../../mvnw -f ../pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)
+wget --directory-prefix=work  --output-file=work/log.txt http://localhost:8080/camel-example-spring-security-$POM_VERSION/camel/user
 cat -n work/* | less