Advertisement
Guest User

Untitled

a guest
Sep 26th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Gradle:
  2. compile('org.liquibase:liquibase-core')
  3.  
  4. Base xml (src/main/resources/liquibase/)
  5. <?xml version="1.0" encoding="utf-8"?>
  6. <databaseChangeLog
  7. xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  8. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
  10.  
  11. <!-- Arquivo de importação -->
  12. <include file="changelog/qsicontroleacesso.xml" relativeToChangelogFile="true"/>
  13. </databaseChangeLog>
  14.  
  15. Config properties
  16. liquibase.change-log=classpath:liquibase/base.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement