6a42e8716dde790775fe360f9a40faed67f6fafe
[portal.git] / portal-BE / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.springframework.boot</groupId>
7                 <artifactId>spring-boot-starter-parent</artifactId>
8                 <version>2.2.0.M4</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>org.onap</groupId>
12         <artifactId>portal</artifactId>
13         <version>0.0.1-SNAPSHOT</version>
14         <name>portal-BE</name>
15         <description></description>
16
17         <dependencies>
18                 <dependency>
19                         <groupId>org.springframework.boot</groupId>
20                         <artifactId>spring-boot-starter-actuator</artifactId>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.springframework.boot</groupId>
24                         <artifactId>spring-boot-starter-data-jpa</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-security</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>org.springframework.boot</groupId>
32                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>org.springframework.boot</groupId>
36                         <artifactId>spring-boot-starter-web</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.springframework.session</groupId>
40                         <artifactId>spring-session-core</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.springframework.boot</groupId>
44                         <artifactId>spring-boot-starter-aop</artifactId>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.springframework.boot</groupId>
48                         <artifactId>spring-boot-devtools</artifactId>
49                         <scope>runtime</scope>
50                         <optional>true</optional>
51                 </dependency>
52                 <dependency>
53                         <groupId>com.h2database</groupId>
54                         <artifactId>h2</artifactId>
55                         <scope>runtime</scope>
56                 </dependency>
57                 <dependency>
58                         <groupId>mysql</groupId>
59                         <artifactId>mysql-connector-java</artifactId>
60                         <scope>runtime</scope>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.projectlombok</groupId>
64                         <artifactId>lombok</artifactId>
65                         <optional>true</optional>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.powermock</groupId>
69                         <artifactId>powermock-module-junit4</artifactId>
70                         <version>2.0.0</version>
71                         <scope>test</scope>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>org.powermock</groupId>
76                         <artifactId>powermock-api-mockito2</artifactId>
77                         <version>2.0.0</version>
78                         <scope>test</scope>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.onap.portal.sdk</groupId>
82                         <artifactId>epsdk-logger</artifactId>
83                         <version>2.6.0-SNAPSHOT</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.onap.portal.sdk</groupId>
87                         <artifactId>epsdk-logger</artifactId>
88                         <version>2.6.0-SNAPSHOT</version>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.onap.portal.sdk</groupId>
92                         <artifactId>epsdk-core</artifactId>
93                         <version>2.6.0-SNAPSHOT</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.springframework.boot</groupId>
97                         <artifactId>spring-boot-starter-test</artifactId>
98                         <scope>test</scope>
99                         <exclusions>
100                                 <exclusion>
101                                         <groupId>org.junit.vintage</groupId>
102                                         <artifactId>junit-vintage-engine</artifactId>
103                                 </exclusion>
104                                 <exclusion>
105                                         <groupId>junit</groupId>
106                                         <artifactId>junit</artifactId>
107                                 </exclusion>
108                         </exclusions>
109                 </dependency>
110                 <dependency>
111                         <groupId>org.springframework.security</groupId>
112                         <artifactId>spring-security-test</artifactId>
113                         <scope>test</scope>
114                 </dependency>
115         </dependencies>
116
117         <build>
118                 <plugins>
119                         <plugin>
120                                 <groupId>org.springframework.boot</groupId>
121                                 <artifactId>spring-boot-maven-plugin</artifactId>
122                         </plugin>
123                 </plugins>
124                 <resources>
125                         <resource>
126                                 <directory>src/main/resources</directory>
127                         </resource>
128                 </resources>
129         </build>
130
131         <repositories>
132                 <repository>
133                         <id>spring-milestones</id>
134                         <name>Spring Milestones</name>
135                         <url>https://repo.spring.io/milestone</url>
136                 </repository>
137         </repositories>
138         <pluginRepositories>
139                 <pluginRepository>
140                         <id>spring-milestones</id>
141                         <name>Spring Milestones</name>
142                         <url>https://repo.spring.io/milestone</url>
143                 </pluginRepository>
144         </pluginRepositories>
145
146 </project>