diff options
Diffstat (limited to 'sliapi/springboot/pom.xml')
-rw-r--r-- | sliapi/springboot/pom.xml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sliapi/springboot/pom.xml b/sliapi/springboot/pom.xml index 8e8894597..2a3fbcb06 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> |