Portal Spring Boot Development
[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>org.springframework.boot</groupId>
54                         <artifactId>spring-boot-starter-aop</artifactId>
55                         <version>2.1.6.RELEASE</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>com.h2database</groupId>
59                         <artifactId>h2</artifactId>
60                         <scope>runtime</scope>
61                 </dependency>
62                 <dependency>
63                         <groupId>mysql</groupId>
64                         <artifactId>mysql-connector-java</artifactId>
65                         <scope>runtime</scope>
66                 </dependency>
67                 <!-- https://mvnrepository.com/artifact/org.glassfish/javax.el -->
68                 <dependency>
69                         <groupId>org.glassfish</groupId>
70                         <artifactId>javax.el</artifactId>
71                         <version>3.0.1-b11</version>
72                 </dependency>
73                 <!-- https://mvnrepository.com/artifact/javax.el/el-api -->
74                 <dependency>
75                         <groupId>javax.el</groupId>
76                         <artifactId>el-api</artifactId>
77                         <version>2.2.1-b04</version>
78                 </dependency>
79                 <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
80                 <dependency>
81                         <groupId>org.jsoup</groupId>
82                         <artifactId>jsoup</artifactId>
83                         <version>1.12.1</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.projectlombok</groupId>
87                         <artifactId>lombok</artifactId>
88                         <optional>true</optional>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.powermock</groupId>
92                         <artifactId>powermock-module-junit4</artifactId>
93                         <version>2.0.0</version>
94                         <scope>test</scope>
95                 </dependency>
96
97                 <dependency>
98                         <groupId>org.powermock</groupId>
99                         <artifactId>powermock-api-mockito2</artifactId>
100                         <version>2.0.0</version>
101                         <scope>test</scope>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.onap.portal.sdk</groupId>
105                         <artifactId>epsdk-logger</artifactId>
106                         <version>2.6.0-SNAPSHOT</version>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.onap.portal.sdk</groupId>
110                         <artifactId>epsdk-logger</artifactId>
111                         <version>2.6.0-SNAPSHOT</version>
112                 </dependency>
113                 <dependency>
114                         <groupId>org.onap.portal.sdk</groupId>
115                         <artifactId>epsdk-core</artifactId>
116                         <version>2.6.0-SNAPSHOT</version>
117                 </dependency>
118                 <dependency>
119                         <groupId>org.springframework.boot</groupId>
120                         <artifactId>spring-boot-starter-test</artifactId>
121                         <scope>test</scope>
122                         <exclusions>
123                                 <exclusion>
124                                         <groupId>org.junit.vintage</groupId>
125                                         <artifactId>junit-vintage-engine</artifactId>
126                                 </exclusion>
127                                 <exclusion>
128                                         <groupId>junit</groupId>
129                                         <artifactId>junit</artifactId>
130                                 </exclusion>
131                         </exclusions>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.springframework.security</groupId>
135                         <artifactId>spring-security-test</artifactId>
136                         <scope>test</scope>
137                 </dependency>
138         </dependencies>
139
140         <build>
141                 <plugins>
142                         <plugin>
143                                 <groupId>org.springframework.boot</groupId>
144                                 <artifactId>spring-boot-maven-plugin</artifactId>
145                         </plugin>
146                 </plugins>
147                 <resources>
148                         <resource>
149                                 <directory>src/main/resources</directory>
150                         </resource>
151                 </resources>
152         </build>
153
154         <repositories>
155                 <repository>
156                         <id>spring-milestones</id>
157                         <name>Spring Milestones</name>
158                         <url>https://repo.spring.io/milestone</url>
159                 </repository>
160         </repositories>
161         <pluginRepositories>
162                 <pluginRepository>
163                         <id>spring-milestones</id>
164                         <name>Spring Milestones</name>
165                         <url>https://repo.spring.io/milestone</url>
166                 </pluginRepository>
167         </pluginRepositories>
168
169 </project>