You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 line
408 B

  1. @echo off
  2. copy /Y src\main\webapp\WEB-INF\classes\log4j.properties.prod src\main\webapp\WEB-INF\classes\log4j.properties
  3. copy /Y src\main\webapp\WEB-INF\app.properties.local src\main\webapp\WEB-INF\app.properties
  4. copy /Y src\main\webapp\META-INF\context.xml.local src\main\webapp\META-INF\context.xml
  5. call a-clean-undeploy
  6. call gradlew clean war
  7. copy build\libs\%PROJECT_NAME%.war "%TC_BASE%\webapps"
  8. call on