Merge "Create module for Portal Spring Boot version"
[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</name>
15         <description></description>
16
17         <properties>
18                 <java.version>1.8</java.version>
19         </properties>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>org.springframework.boot</groupId>
24                         <artifactId>spring-boot-starter-actuator</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-data-jpa</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>org.springframework.boot</groupId>
32                         <artifactId>spring-boot-starter-security</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>org.springframework.boot</groupId>
36                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.springframework.boot</groupId>
40                         <artifactId>spring-boot-starter-web</artifactId>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.springframework.session</groupId>
44                         <artifactId>spring-session-core</artifactId>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.springframework.boot</groupId>
48                         <artifactId>spring-boot-starter-aop</artifactId>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.springframework.boot</groupId>
52                         <artifactId>spring-boot-devtools</artifactId>
53                         <scope>runtime</scope>
54                         <optional>true</optional>
55                 </dependency>
56                 <dependency>
57                         <groupId>com.h2database</groupId>
58                         <artifactId>h2</artifactId>
59                         <scope>runtime</scope>
60                 </dependency>
61                 <dependency>
62                         <groupId>org.projectlombok</groupId>
63                         <artifactId>lombok</artifactId>
64                         <optional>true</optional>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.springframework.boot</groupId>
68                         <artifactId>spring-boot-starter-test</artifactId>
69                         <scope>test</scope>
70                         <exclusions>
71                                 <exclusion>
72                                         <groupId>org.junit.vintage</groupId>
73                                         <artifactId>junit-vintage-engine</artifactId>
74                                 </exclusion>
75                                 <exclusion>
76                                         <groupId>junit</groupId>
77                                         <artifactId>junit</artifactId>
78                                 </exclusion>
79                         </exclusions>
80                 </dependency>
81                 <dependency>
82                         <groupId>org.springframework.security</groupId>
83                         <artifactId>spring-security-test</artifactId>
84                         <scope>test</scope>
85                 </dependency>
86         </dependencies>
87
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.springframework.boot</groupId>
92                                 <artifactId>spring-boot-maven-plugin</artifactId>
93                         </plugin>
94                 </plugins>
95         </build>
96
97         <repositories>
98                 <repository>
99                         <id>spring-milestones</id>
100                         <name>Spring Milestones</name>
101                         <url>https://repo.spring.io/milestone</url>
102                 </repository>
103         </repositories>
104         <pluginRepositories>
105                 <pluginRepository>
106                         <id>spring-milestones</id>
107                         <name>Spring Milestones</name>
108                         <url>https://repo.spring.io/milestone</url>
109                 </pluginRepository>
110         </pluginRepositories>
111
112 </project>