build.bat 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. @echo off
  2. @rem mvn clean package
  3. rd /s /q target
  4. set appName=%date:~0,4%%date:~5,2%%date:~8,2%
  5. echo 'copy common-flow...'
  6. md target\common-flow
  7. copy .\common-flow\target\*.jar .\target\common-flow
  8. echo 'copy dispatch-manage...'
  9. md target\dispatch-manage
  10. copy .\dispatch-manage\target\*.jar .\target\dispatch-manage
  11. echo 'copy flow_project...'
  12. md target\flow_project
  13. copy .\flow_project\target\*.jar .\target\flow_project
  14. echo 'copy hnls-admin...'
  15. md target\hnls-admin
  16. copy .\hnls-admin\hnls-admin-service\target\*.jar .\target\hnls-admin
  17. echo 'copy hnls-dc...'
  18. md target\hnls-dc
  19. copy .\hnls-dc\target\*.jar .\target\hnls-dc
  20. echo 'copy hnls-gis...'
  21. md target\hnls-gis
  22. copy .\hnls-gis\target\*.jar .\target\hnls-gis
  23. echo 'copy hnls-gps...'
  24. md target\hnls-gps
  25. copy .\hnls-gps\hnls-gps-boot\target\*.jar .\target\hnls-gps
  26. echo 'copy hnls-mis...'
  27. md target\hnls-mis
  28. copy .\hnls-mis\hnls-mis-boot\target\*.jar .\target\hnls-mis
  29. echo 'copy hnls-scada...'
  30. md target\hnls-scada
  31. copy .\hnls-scada\target\*.jar .\target\hnls-scada
  32. echo 'copy water-quality...'
  33. md target\water-quality
  34. copy .\water-quality\target\*.jar .\target\water-quality
  35. pause