Advertisement
Guest User

Untitled

a guest
Jul 16th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <databaseChangeLog
  3. xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
  6.  
  7. <include file="classpath:config/liquibase/changelog/00000000000000_initial_schema.xml" relativeToChangelogFile="false"/>
  8. <!-- jhipster-needle-liquibase-add-changelog - JHipster will add liquibase changelogs here -->
  9. <!-- jhipster-needle-liquibase-add-constraints-changelog - JHipster will add liquibase constraints changelogs here -->
  10. </databaseChangeLog>
  11.  
  12. [ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.5.3:update (default-cli) on project playground: Error setting up or running Liquibase: liquibase.exception.SetupException: classpath:config/liquibase/changelog/00000000000000_initial_schema.xml does not exist -> [Help 1]
  13.  
  14. liquibase --classpath=src/main/resources --classpath=postgresql-42.1.3.jar
  15. --url=jdbc:postgresql://localhost:5432/playground
  16. --driver=org.postgresql.Driver
  17. --changeLogFile=src/main/resources/config/liquibase/master.xml
  18. --username playground --password=***** update
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement