added convenience scripts

This commit is contained in:
Kohsuke Kawaguchi 2011-01-28 12:57:37 -08:00
parent 4b8393b5e5
commit a62be5fcb1
2 changed files with 6 additions and 0 deletions

2
bulk-import.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
exec mvn -e compile exec:java -Dexec.mainClass=BulkImport "-Dexec.args=$1" -Dexec.classpathScope=test

4
deploy.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash -ex
# deploy to the production server
mvn package
scp target/accountapp.war accountapp@cucumber:~