http://docs.aws.amazon.com/cli/latest/reference/s3/cp.html
How to set up: https://github.com/aws/aws-cli
$ export AWS_ACCESS_KEY_ID=[access_key] $ export AWS_SECRET_ACCESS_KEY=[secret_key]
I wanted a place where I can post technical articles only. This is the place to find out my tips and tricks for being a Java web applications developer. I hope it helps you.
$ export AWS_ACCESS_KEY_ID=[access_key] $ export AWS_SECRET_ACCESS_KEY=[secret_key]
To create your shaded (uber) jar, you just need to declare the shade plugin in your pom.xml.
With regards to installation of the shade plugin, simply declaring it in the plugins section of your pom.xml is all you need do. Maven plugins are not installed manually, but are automatically downloaded by Maven (if not already downloaded; just like dependencies), stored in your local repository, and used whenever a project needs them.
As to using it, much like other plugins, declare it in your pom.xml by adding a
http\://www.mycompany.com/schema/myns=org.springframework.samples.xml.MyNamespaceHandler (The ':' character is a valid delimiter in the Java properties format, and so the ':' character in the URI needs to be escaped with a backslash.)The first part (the key) of the key-value pair is the URI associated with your custom namespace extension, and needs to match exactly the value of the 'targetNamespace' attribute as specified in your custom XSD schema.
http\://www.mycompany.com/schema/myns/myns.xsd=org/springframework/samples/xml/myns.xsd The upshot of this is that you are encouraged to deploy your XSD file(s) right alongside the NamespaceHandler and BeanDefinitionParser classes on the classpath.