diff options
author | 2025-01-06 11:38:34 +0100 | |
---|---|---|
committer | 2025-01-13 20:41:40 +0000 | |
commit | 1733043036bbf8659db9856eaac583e70f44ed4a (patch) | |
tree | 057a884a61ba32e3bc4b4da1762c6ae6d459de28 /pom.xml | |
parent | dd4a7968d539a958b2ddccb77d00fcb68eb177b7 (diff) |
Make aai-resources agnostic of the embedded server (remove jetty-specific code)oslo
- small adjustments to authentication
- make users configurable via aai.basic-auth.users[] in application.properties
- remove Keycloak integration [0]
[0] for the following reasons:
- integration test (MultiTenancyTest) already not working
- dependency is ancient (uses 11, 26 is available as of writing)
- keycloak autoconfiguration is in conflict with spring security
- keycloak-specific starters have been deprecated and users are advised to
use the out-of-the-box spring OIDC integration [1]
- there is no (and likely never will be a) starter that is compatible with spring-boot 3
[1] https://www.keycloak.org/2023/03/adapter-deprecation-update
Issue-ID: AAI-4100
Change-Id: I8440f44106f9ba2cbd4addfa88efb63329365977
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,11 +26,11 @@ <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-parent</artifactId> - <version>1.15.4</version> + <version>1.15.5-SNAPSHOT</version> </parent> <groupId>org.onap.aai.resources</groupId> <artifactId>resources</artifactId> - <version>1.15.4-SNAPSHOT</version> + <version>1.15.5-SNAPSHOT</version> <name>aai-resources</name> <packaging>pom</packaging> <modules> @@ -49,7 +49,7 @@ <staging.path>/content/repositories/staging/</staging.path> <!-- GMaven plugin uses this property to figure out the name of the docker tag --> <aai.project.version>${project.version}</aai.project.version> - <aai.common.version>1.15.4</aai.common.version> + <aai.common.version>1.15.5-SNAPSHOT</aai.common.version> <aai.schema.service.version>1.12.7</aai.schema.service.version> </properties> <build> |