e6a210a5634b42c69b39de0c58f4a8b588472122
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / 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.so.simulators</groupId>
6         <artifactId>so-simulators</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     </dependencies>
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.springframework.boot</groupId>
47                 <artifactId>spring-boot-maven-plugin</artifactId>
48                 <configuration>
49                     <mainClass>org.onap.so.aaisimulator.AaiSimulatorApplication</mainClass>
50                 </configuration>
51                 <executions>
52                     <execution>
53                         <goals>
54                             <goal>repackage</goal>
55                         </goals>
56                     </execution>
57                 </executions>
58             </plugin>
59             <plugin>
60                 <groupId>org.springframework.boot</groupId>
61                 <artifactId>spring-boot-maven-plugin</artifactId>
62             </plugin>
63         </plugins>
64     </build>
65 </project>