├── .github └── CODEOWNERS ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── play-liquibase ├── build.sbt └── src │ └── main │ ├── resources │ └── reference.conf │ └── scala │ └── com │ └── ticketfly │ └── play │ └── liquibase │ └── PlayLiquibaseModule.scala ├── project ├── build.properties └── plugins.sbt └── test-play26 ├── .gitignore ├── app ├── controllers │ └── DbController.scala └── model │ └── User.scala ├── build.sbt ├── conf ├── application.conf ├── liquibase │ ├── changelog.xml │ └── changes │ │ └── 1.xml ├── logback.xml └── routes ├── public ├── images │ └── favicon.png ├── javascripts │ └── hello.js └── stylesheets │ └── main.css └── test └── controllers └── DbControllerTest.scala /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | target 3 | *.iml 4 | sonatype.sbt 5 | .bloop 6 | .metals 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/README.md -------------------------------------------------------------------------------- /play-liquibase/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/play-liquibase/build.sbt -------------------------------------------------------------------------------- /play-liquibase/src/main/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/play-liquibase/src/main/resources/reference.conf -------------------------------------------------------------------------------- /play-liquibase/src/main/scala/com/ticketfly/play/liquibase/PlayLiquibaseModule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/play-liquibase/src/main/scala/com/ticketfly/play/liquibase/PlayLiquibaseModule.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.18 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /test-play26/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/.gitignore -------------------------------------------------------------------------------- /test-play26/app/controllers/DbController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/app/controllers/DbController.scala -------------------------------------------------------------------------------- /test-play26/app/model/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/app/model/User.scala -------------------------------------------------------------------------------- /test-play26/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/build.sbt -------------------------------------------------------------------------------- /test-play26/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/conf/application.conf -------------------------------------------------------------------------------- /test-play26/conf/liquibase/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/conf/liquibase/changelog.xml -------------------------------------------------------------------------------- /test-play26/conf/liquibase/changes/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/conf/liquibase/changes/1.xml -------------------------------------------------------------------------------- /test-play26/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/conf/logback.xml -------------------------------------------------------------------------------- /test-play26/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/conf/routes -------------------------------------------------------------------------------- /test-play26/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/public/images/favicon.png -------------------------------------------------------------------------------- /test-play26/public/javascripts/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/public/javascripts/hello.js -------------------------------------------------------------------------------- /test-play26/public/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-play26/test/controllers/DbControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ticketfly/play-liquibase/HEAD/test-play26/test/controllers/DbControllerTest.scala --------------------------------------------------------------------------------