Guest User

Untitled

a guest
Jan 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #!/bin/bash
  2. start=`date +%s`
  3. echo "Maven packaging..."
  4. mvn clean package -q
  5. echo "Deploying to Wildfly..."
  6. ./jboss-cli.sh --connect controller=15.07.19.82 --user=guest --password=guest --command="deploy --force /usr/share/billy/projects/PioneerProj/target/thewebnew.war"
  7. end=`date +%s`
  8. runtime=$((end-start))
  9. echo "Success - in $runtime seconds"
Add Comment
Please, Sign In to add comment