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