summaryrefslogtreecommitdiffstats
path: root/sliapi/springboot/pom.xml
diff options
context:
space:
mode:
authorDavid Stilwell <stilwelld@att.com>2020-03-18 10:02:50 -0400
committerDan Timoney <dtimoney@att.com>2020-03-19 16:14:31 -0400
commit35d9348ab67b6dc3c8e90a2a479f75fcd0af9228 (patch)
tree537ade8be9a327c2b26a96a7ac79dd12a8bac9a9 /sliapi/springboot/pom.xml
parentd8bda45b7e8feccaa521d0ae35b72ae3b87c5a89 (diff)
Springboot integration with AAF
Changes made: pom.xml updates, App.java add Beans for realm and filterchain Issue-ID: CCSDK-2178 Change-Id: I29aa242ceff6a2f840b93a8d18ca5385190ca6d2 Signed-off-by: David Stilwell <stilwelld@att.com>
Diffstat (limited to 'sliapi/springboot/pom.xml')
-rw-r--r--sliapi/springboot/pom.xml13
1 files changed, 11 insertions, 2 deletions
diff --git a/sliapi/springboot/pom.xml b/sliapi/springboot/pom.xml
index 8e889459..2a3fbcb0 100644
--- a/sliapi/springboot/pom.xml
+++ b/sliapi/springboot/pom.xml
@@ -18,6 +18,8 @@
<properties>
<start-class>org.onap.ccsdk.sli.core.sliapi.springboot.App</start-class>
+ <shiro.version>1.5.0</shiro.version>
+ <aaf-shiro-bundle.version>2.1.13</aaf-shiro-bundle.version>
</properties>
<dependencies>
@@ -26,8 +28,9 @@
<artifactId>swagger-annotations</artifactId>
</dependency>
<dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
+ <groupId>org.apache.shiro</groupId>
+ <artifactId>shiro-spring-boot-web-starter</artifactId>
+ <version>${shiro.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
@@ -40,6 +43,12 @@
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<dependency>
+ <groupId>org.onap.aaf.cadi</groupId>
+ <artifactId>aaf-cadi-shiro</artifactId>
+ <version>${aaf-shiro-bundle.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>