Merge "Drools-apps CSIT randomly fails deploying policies"
[integration/csit.git] / plans / usecases / pnf-sw-upgrade / so / simulator / common / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.onap.so.simulators</groupId>
6         <artifactId>simulator</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>common</artifactId>
10     <properties>
11         <version.equalsverifier>2.5.1</version.equalsverifier>
12         <version.openpojo>0.8.6</version.openpojo>
13     </properties>
14     <dependencies>
15         <dependency>
16             <groupId>org.springframework.boot</groupId>
17             <artifactId>spring-boot-starter-security</artifactId>
18             <exclusions>
19                 <exclusion>
20                     <groupId>org.springframework.boot</groupId>
21                     <artifactId>spring-boot-starter-tomcat</artifactId>
22                 </exclusion>
23             </exclusions>
24             <scope>compile</scope>
25         </dependency>
26         <dependency>
27             <groupId>nl.jqno.equalsverifier</groupId>
28             <artifactId>equalsverifier</artifactId>
29             <version>${version.equalsverifier}</version>
30             <scope>test</scope>
31         </dependency>
32         <dependency>
33             <groupId>com.openpojo</groupId>
34             <artifactId>openpojo</artifactId>
35             <version>${version.openpojo}</version>
36         </dependency>
37     </dependencies>
38 </project>