9fa93475bc0af80f9de1b57a6d520a857c643c58
[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.onap.portal.sdk</groupId>
68                         <artifactId>epsdk-logger</artifactId>
69                         <version>2.6.0-SNAPSHOT</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.onap.portal.sdk</groupId>
73                         <artifactId>epsdk-logger</artifactId>
74                         <version>2.6.0-SNAPSHOT</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.onap.portal.sdk</groupId>
78                         <artifactId>epsdk-core</artifactId>
79                         <version>2.6.0-SNAPSHOT</version>
80                 </dependency>
81                 <dependency>
82                         <groupId>org.springframework.boot</groupId>
83                         <artifactId>spring-boot-starter-test</artifactId>
84                         <scope>test</scope>
85                         <exclusions>
86                                 <exclusion>
87                                         <groupId>org.junit.vintage</groupId>
88                                         <artifactId>junit-vintage-engine</artifactId>
89                                 </exclusion>
90                                 <exclusion>
91                                         <groupId>junit</groupId>
92                                         <artifactId>junit</artifactId>
93                                 </exclusion>
94                         </exclusions>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.springframework.security</groupId>
98                         <artifactId>spring-security-test</artifactId>
99                         <scope>test</scope>
100                 </dependency>
101         </dependencies>
102
103         <build>
104                 <plugins>
105                         <plugin>
106                                 <groupId>org.springframework.boot</groupId>
107                                 <artifactId>spring-boot-maven-plugin</artifactId>
108                         </plugin>
109                 </plugins>
110         </build>
111
112         <repositories>
113                 <repository>
114                         <id>spring-milestones</id>
115                         <name>Spring Milestones</name>
116                         <url>https://repo.spring.io/milestone</url>
117                 </repository>
118         </repositories>
119         <pluginRepositories>
120                 <pluginRepository>
121                         <id>spring-milestones</id>
122                         <name>Spring Milestones</name>
123                         <url>https://repo.spring.io/milestone</url>
124                 </pluginRepository>
125         </pluginRepositories>
126
127 </project>