All Downloads are FREE. Search and download functionalities are using the official Maven repository.

catools.git.hibernate.conf Maven / Gradle / Ivy

catools.git {
  jdbc {
    // the JDBC driver
    driver = "org.postgresql.Driver"
    driver = ${?CATOOLS_GIT_JDBC_DRIVER}

    // The connection url should always have "TMS_ETL" schema
    url = "jdbc:postgresql://localhost:5432/catools"
    url = ${?CATOOLS_GIT_JDBC_URL}

    // the connection username
    username {
      value = "postgres"
      value = ${?CATOOLS_GIT_JDBC_USERNAME}

      sensitive = true
    }

    // the connection password
    password {
      value = "password"
      value = ${?CATOOLS_GIT_JDBC_PASSWORD}

      sensitive = true
    }
  }

  hibernate {
    // the hibernate dialect
    dialect = "org.hibernate.dialect.PostgreSQL10Dialect"
    dialect = ${?CATOOLS_GIT_HIBERNATE_DIALECT}

    // the hibernate dialect
    show_sql = false
    show_sql = ${?CATOOLS_GIT_HIBERNATE_SHOW_SQL}

    // the etl default schema
    default_schema = git
    default_schema = ${?CATOOLS_GIT_HIBERNATE_DEFAULT_SCHEMA}
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy