diff --git a/nachrichten-manager-server/pom.xml b/nachrichten-manager-server/pom.xml index bc84adad4bcc81387a9ba594d855763895ed575b..6aa11d0d7a51c504265f929af26aefb599195117 100644 --- a/nachrichten-manager-server/pom.xml +++ b/nachrichten-manager-server/pom.xml @@ -173,6 +173,16 @@ <artifactId>grpc-client-spring-boot-starter</artifactId> </dependency> + <!-- oauth for osiv2-postfach --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-oauth2-client</artifactId> + </dependency> + <!-- commons --> <dependency> <groupId>org.apache.commons</groupId> diff --git a/nachrichten-manager-server/src/main/resources/application.yaml b/nachrichten-manager-server/src/main/resources/application.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ee8f0aa38c6f6e82059d6f38524bc9944ad3eead --- /dev/null +++ b/nachrichten-manager-server/src/main/resources/application.yaml @@ -0,0 +1,8 @@ +spring: + security: + oauth2: + client: + registration: + other: + provider: + other: \ No newline at end of file