diff options
author | puthuparambil.aditya <aditya.puthuparambil@bell.ca> | 2021-05-06 16:12:44 +0100 |
---|---|---|
committer | puthuparambil.aditya <aditya.puthuparambil@bell.ca> | 2021-05-13 11:20:07 +0100 |
commit | d31d8e1cc167abf7835a1771b5ddc8d78aba9ac6 (patch) | |
tree | 056a897594706613f71316e87075a93c7d9d6ab7 /src/test/resources | |
parent | 26af9368115f5f7296aa4123f38b4e1c81a40b8d (diff) |
Implement service and repository layers for storing temporal data
1. Basic structure created
2. Basic tests added
3. lombok.config included for coverage
Issue-ID: CPS-194
Signed-off-by: puthuparambil.aditya <aditya.puthuparambil@bell.ca>
Change-Id: Icf23c2e647106f7985dff14d9901806f7c4aa55a
Diffstat (limited to 'src/test/resources')
-rw-r--r-- | src/test/resources/application.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml index 5f64bd9..afaff6c 100644 --- a/src/test/resources/application.yml +++ b/src/test/resources/application.yml @@ -14,6 +14,9 @@ # limitations under the License. # ============LICENSE_END========================================================= +server: + port: 8080 + spring: datasource: url: ${DB_URL} @@ -21,3 +24,13 @@ spring: username: ${DB_USERNAME} liquibase: change-log: classpath:/db/changelog/changelog-master.xml + jpa: + open-in-view: false + properties: + hibernate: + dialect: org.hibernate.dialect.PostgreSQLDialect + +logging: + level: + org: + springframework: INFO |