CSIT Support for ServiceLevel PNF Software Upgrade
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / aai-simulator / 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.aaisimulators</groupId>
6         <artifactId>simulator</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>aai-simulator</artifactId>
10     <properties>
11         <version.aai.schema>1.0.0</version.aai.schema>
12     </properties>
13     <dependencies>
14         <dependency>
15             <groupId>${project.parent.groupId}</groupId>
16             <artifactId>common</artifactId>
17             <version>${project.version}</version>
18         </dependency>
19         <dependency>
20             <groupId>org.onap.aai.schema-service</groupId>
21             <artifactId>aai-schema</artifactId>
22             <version>${version.aai.schema}</version>
23         </dependency>
24         <dependency>
25             <groupId>com.fasterxml.jackson.module</groupId>
26             <artifactId>jackson-module-jaxb-annotations</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.springframework.boot</groupId>
30             <artifactId>spring-boot-starter-security</artifactId>
31             <exclusions>
32                 <exclusion>
33                     <groupId>org.springframework.boot</groupId>
34                     <artifactId>spring-boot-starter-tomcat</artifactId>
35                 </exclusion>
36             </exclusions>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.httpcomponents</groupId>
40             <artifactId>httpclient</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>javax.xml.bind</groupId>
44             <artifactId>jaxb-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.sun.xml.bind</groupId>
48             <artifactId>jaxb-core</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.sun.xml.bind</groupId>
52             <artifactId>jaxb-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>javax.activation</groupId>
56             <artifactId>activation</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.google.code.gson</groupId>
60             <artifactId>gson</artifactId>
61             <version>2.8.5</version>
62         </dependency>
63     </dependencies>
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.springframework.boot</groupId>
68                 <artifactId>spring-boot-maven-plugin</artifactId>
69                 <configuration>
70                     <mainClass>org.onap.aaisimulator.AaiSimulatorApplication</mainClass>
71                 </configuration>
72                 <executions>
73                     <execution>
74                         <goals>
75                             <goal>repackage</goal>
76                         </goals>
77                     </execution>
78                 </executions>
79             </plugin>
80             <plugin>
81                 <groupId>org.springframework.boot</groupId>
82                 <artifactId>spring-boot-maven-plugin</artifactId>
83             </plugin>
84         </plugins>
85     </build>
86 </project>