Release aai/aai-common
[aai/aai-common.git] / aai-aaf-auth / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.onap.aai.aai-common</groupId>
8         <artifactId>aai-parent</artifactId>
9         <version>1.13.1</version>
10         <relativePath>../aai-parent/pom.xml</relativePath>
11     </parent>
12     <artifactId>aai-aaf-auth</artifactId>
13     <name>aai-aaf-auth</name>
14     <packaging>jar</packaging>
15     <dependencies>
16         <dependency>
17             <groupId>org.onap.aai.aai-common</groupId>
18             <artifactId>aai-els-onap-logging</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.onap.aaf.authz</groupId>
22             <artifactId>aaf-cadi-core</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.onap.aaf.authz</groupId>
26             <artifactId>aaf-cadi-aaf</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.easymock</groupId>
30             <artifactId>easymock</artifactId>
31             <scope>test</scope>
32         </dependency>
33         <dependency>
34             <groupId>org.springframework</groupId>
35             <artifactId>spring-web</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.springframework</groupId>
39             <artifactId>spring-context</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.springframework.boot</groupId>
43             <artifactId>spring-boot-starter-web</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.springframework.boot</groupId>
47             <artifactId>spring-boot-starter-web</artifactId>
48             <exclusions>
49                 <exclusion>
50                     <groupId>org.springframework.boot</groupId>
51                     <artifactId>spring-boot-starter-tomcat</artifactId>
52                 </exclusion>
53             </exclusions>
54         </dependency>
55         <dependency>
56             <groupId>com.google.code.gson</groupId>
57             <artifactId>gson</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>commons-io</groupId>
61             <artifactId>commons-io</artifactId>
62         </dependency>
63         <dependency>
64                         <groupId>junit</groupId>
65                         <artifactId>junit</artifactId>
66                         <scope>test</scope>
67                 </dependency>
68         <!-- TODO: Migrate tests to junit 5 and remove this dependency -->
69                 <dependency>
70                         <groupId>org.junit.vintage</groupId>
71                         <artifactId>junit-vintage-engine</artifactId>
72                         <scope>test</scope>
73                         <exclusions>
74                                         <exclusion>
75                                                         <groupId>org.hamcrest</groupId>
76                                                         <artifactId>hamcrest-core</artifactId>
77                                         </exclusion>
78                         </exclusions>
79                 </dependency>
80     </dependencies>
81 </project>