setup_mysql.sh 262 B

123456789
  1. #!/bin/bash
  2. sed -i 's|url: jdbc:mysql://.*/hello_world|url: jdbc:mysql://'"${DBHOST}"':3306/hello_world|g' hello-world-mysql.yml
  3. fw_depends java7 maven
  4. mvn -P mysql clean package
  5. java -jar target/hello-world-0.0.1-SNAPSHOT.jar server hello-world-mysql.yml &