What you're being required to do goes against the Maven conventions and recommended best practices. Gotta remember, Maven does build and release, not deploy. Yes, there is a deploy goal, but that goal takes the artifacts produced from the build or release and pushes it to the a remote Maven repository that is storing all versions of artifacts. That repository structure is why your JAR and WAR files end up in different folders when you do the mvn release:perform, which is another way of asking maven to do a mvn deploy.
Now if you want to keep with the Maven way of doing things, you should write another script (shell, Ant, your choice) for deployment that would get those JAR and WAR files from the remote Maven artifact repository and bundle them up the way you want and deploy it to the server(s) you want them installed on.
Now, you can change maven to sort of do what you want your are asking, but you'll have to create another project/module that only does bundling of the JAR and WAR files in the way you want as an archive file (tar, gzip, zip). The Maven assembly plugin is the tool to do this job. You can find out more about the assembly plugin here. Now, keep in mind, mvn release:perform will still push the archive to the Maven repository. You'll still need to have a deployment script to get the archive file from the remote Maven repository and extract it to the server you want to deploy it to.