From 93edf161867499bfc7f4d25c5cb21c5a89b069d0 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 13 Feb 2025 21:22:08 -0600 Subject: Add ssl_bundle. --- src/test/resources/application.properties | 9 --------- src/test/resources/application.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 9 deletions(-) delete mode 100644 src/test/resources/application.properties create mode 100644 src/test/resources/application.yml (limited to 'src/test/resources') diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties deleted file mode 100644 index 7bc73a2..0000000 --- a/src/test/resources/application.properties +++ /dev/null @@ -1,9 +0,0 @@ -org.springframework.web: DEBUG -org.springframework.security: DEBUG - -spring.datasource.url=jdbc:h2:mem:testdb -spring.datasource.driver-class-name=org.h2.Driver -spring.jpa.database-platform=org.hibernate.dialect.H2Dialect -spring.h2.console.enabled=true -spring.jpa.show-sql=true -spring.jpa.properties.hibernate.format_sql=true \ No newline at end of file diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml new file mode 100644 index 0000000..4c7d55f --- /dev/null +++ b/src/test/resources/application.yml @@ -0,0 +1,19 @@ +org: + springframework: + web: DEBUG + security: DEBUG + +spring: + datasource: + url: jdbc:h2:mem:testdb + driver-class-name: org.h2.Driver + jpa: + database-platform: org.hibernate.dialect.H2Dialect + show-sql: true + properties: + hibernate: + format_sql: true + + h2: + console: + enabled: true -- cgit v1.2.3-54-g00ecf