Guest User

Untitled

a guest
Jan 17th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. I have integrated the liquibase in my project and added the liquibase plugin in pom.xml, however it is working fine on my local system but after checked in into the git hub the staging build getting failed with the following error:
  2.  
  3.  
  4.  
  5. ------------------------------------------------------------------------
  6. [[1;34mINFO[m] Parsing Liquibase Properties File
  7. [[1;34mINFO[m] File: src/main/resources/liquibase.properties
  8. [[1;34mINFO[m] ------------------------------------------------------------------------
  9. [[1;34mINFO[m] Starting Liquibase at Thu, 17 Jan 2019 15:24:09 IST (version 3.6.1 built at 2018-04-11 09:05:04)
  10. [[1;34mINFO[m] Executing on Database: jdbc:mysql://10.264.230.308/imsstaging?autoReconnect=true&useSSL=false
  11. [[1;34mINFO[m] [1m------------------------------------------------------------------------[m
  12. [[1;34mINFO[m] [1;31mBUILD FAILURE[m
  13. [[1;34mINFO[m] [1m------------------------------------------------------------------------[m
  14. [[1;34mINFO[m] Total time: 3.210 s
  15. [[1;34mINFO[m] Finished at: 2019-01-17T15:24:10+05:30
  16. [[1;34mINFO[m] Final Memory: 16M/121M
  17. [[1;34mINFO[m] [1m------------------------------------------------------------------------
  18.  
  19. POM.xml:
  20.  
  21. <plugin>
  22. <groupId>org.liquibase</groupId>
  23. <artifactId>liquibase-maven-plugin</artifactId>
  24. <version>3.6.1</version>
  25. <configuration>
  26. <propertyFile>src/main/resources/liquibase.properties</propertyFile>
  27. </configuration>
  28. <executions>
  29. <execution>
  30. <phase>process-resources</phase>
  31. <goals>
  32. <goal>update</goal>
  33. </goals>
  34. </execution>
  35. </executions>
  36. </plugin>
Add Comment
Please, Sign In to add comment