Building an Application with Spring Boot :: Learn how to build an application with minimal configuration. https://spring.io/guides/gs/spring-boot/

run.sh 372B

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/bin/sh
  2. cd $(dirname $0)
  3. cd ../complete
  4. mvn clean package
  5. ret=$?
  6. if [ $ret -ne 0 ]; then
  7. exit $ret
  8. fi
  9. rm -rf target
  10. ./gradlew build
  11. ret=$?
  12. if [ $ret -ne 0 ]; then
  13. exit $ret
  14. fi
  15. rm -rf build
  16. cd ../initial
  17. mvn clean compile
  18. ret=$?
  19. if [ $ret -ne 0 ]; then
  20. exit $ret
  21. fi
  22. rm -rf target
  23. ./gradlew compileJava
  24. ret=$?
  25. if [ $ret -ne 0 ]; then
  26. exit $ret
  27. fi
  28. rm -rf build
  29. exit