Advertisement
Guest User

Untitled

a guest
Jun 7th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. [INFO] Settings
  2. ----------------------------
  3. [INFO] driver: org.postgresql.Driver
  4. [INFO] url: jdbc:postgresql://localhost/gastos8
  5. [INFO] username: gastos8
  6. [INFO] password: *****
  7. [INFO] use empty password: false
  8. [INFO] properties file: null
  9. [INFO] properties file will override? false
  10. [INFO] prompt on non-local database? true
  11. [INFO] clear checksums? false
  12. [INFO] changeLogFile: src/main/resources/config/liquibase/master.xml
  13. [INFO] context(s): null
  14. [INFO] label(s): null
  15. [INFO] referenceDriver: null
  16. [INFO] referenceUrl: hibernate:spring:com.cboujon.domain?dialect=org.hibernate.dialect.PostgreSQL82Dialect
  17. [INFO] referenceUsername: null
  18. [INFO] referencePassword: null
  19. [INFO] referenceDefaultSchema: null
  20. [INFO] diffChangeLogFile: src/main/resources/config/liquibase/changelog/20150807132702_changelog.xml
  21. [INFO] ------------------------------------------------------------------------
  22. [INFO] ------------------------------------------------------------------------
  23. [INFO] BUILD FAILURE
  24. [INFO] ------------------------------------------------------------------------
  25. [INFO] Total time: 9.554s
  26. [INFO] Finished at: Fri Aug 07 13:27:12 ART 2015
  27. [INFO] Final Memory: 18M/179M
  28. [INFO] ------------------------------------------------------------------------
  29. [ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.3.2:diff (default-cli) on project gastos8: Error setting up or running Liquibase: liquibase.exception.DatabaseException: org.postgresql.util.PSQLException: FATAL: password authentication failed for user "gastos8" -> [Help 1]
  30. [ERROR]
  31. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  32. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  33. [ERROR]
  34. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  35. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
  36.  
  37. spring:
  38. profiles:
  39. active: dev
  40. datasource:
  41. dataSourceClassName: org.postgresql.ds.PGSimpleDataSource
  42. url:
  43. databaseName: gastos8
  44. serverName: localhost
  45. username: postgres
  46. password: ---
  47.  
  48. jpa:
  49. database-platform: org.hibernate.dialect.PostgreSQL9Dialect
  50. database: POSTGRESQL
  51. openInView: false
  52. show_sql: true
  53. generate-ddl: false
  54. hibernate:
  55. ddl-auto: none
  56. naming-strategy: org.hibernate.cfg.EJB3NamingStrategy
  57. properties:
  58. hibernate.cache.use_second_level_cache: true
  59. hibernate.cache.use_query_cache: false
  60. hibernate.generate_statistics: true
  61. hibernate.cache.region.factory_class: org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory
  62.  
  63. <plugin>
  64. <groupId>org.liquibase</groupId>
  65. <artifactId>liquibase-maven-plugin</artifactId>
  66. <version>3.0.5</version>
  67. <configuration>
  68. <changeLogFile>src/main/resources/org/liquibase/business_table.xml</changeLogFile>
  69. <driver>oracle.jdbc.driver.OracleDriver</driver>
  70. <url>jdbc:oracle:thin:@tf-appserv-linux:1521:xe</url>
  71. <username>liquibaseTest</username>
  72. <password>pass</password>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <phase>process-resources</phase>
  77. <goals>
  78. <goal>update</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement