diff options
author | Michael Dürre <michael.duerre@highstreet-technologies.com> | 2024-03-14 11:54:26 +0100 |
---|---|---|
committer | Michael Dürre <michael.duerre@highstreet-technologies.com> | 2024-03-14 11:54:43 +0100 |
commit | ccea526a9ba642d726817b6bc1eeb1d4062b53cb (patch) | |
tree | 06a4844d0705f09b0a8e095886746ba21a1592ec /sdnr/wt/featureaggregator/feature-oauth/pom.xml | |
parent | c1a053e3bcaeb3006b822e98b80c564c330e2bf3 (diff) |
fix oauth code
split oauth to realm and web functionality
Issue-ID: CCSDK-3394
Change-Id: I245a30a9df4e9a5c40af5dfe3e0d5318bceed9dc
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/featureaggregator/feature-oauth/pom.xml')
-rw-r--r-- | sdnr/wt/featureaggregator/feature-oauth/pom.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sdnr/wt/featureaggregator/feature-oauth/pom.xml b/sdnr/wt/featureaggregator/feature-oauth/pom.xml index b79b320e6..707dc7801 100644 --- a/sdnr/wt/featureaggregator/feature-oauth/pom.xml +++ b/sdnr/wt/featureaggregator/feature-oauth/pom.xml @@ -22,6 +22,7 @@ ~ ============LICENSE_END======================================================= ~ --> + <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -34,7 +35,7 @@ <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> <artifactId>sdnr-wt-feature-aggregator-oauth</artifactId> - <version>1.6.0-SNAPSHOT</version> + <version>1.7.0-SNAPSHOT</version> <packaging>feature</packaging> <name>ccsdk-features :: ${project.artifactId}</name> @@ -47,14 +48,13 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> - <artifactId>sdnr-wt-oauth-provider</artifactId> + <artifactId>sdnr-wt-oauth-web</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>sdnr-wt-oauth-realm</artifactId> <version>${project.version}</version> - <exclusions> - <exclusion> - <groupId>${project.groupId}</groupId> - <artifactId>sdnr-wt-oauth-provider-jar</artifactId> - </exclusion> - </exclusions> </dependency> </dependencies> </project> |