Adding basic support for sdnc sim
[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             <scope>test</scope>
42         </dependency>
43     </dependencies>
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.springframework.boot</groupId>
48                 <artifactId>spring-boot-maven-plugin</artifactId>
49                 <configuration>
50                     <mainClass>org.onap.so.aaisimulator.AaiSimulatorApplication</mainClass>
51                 </configuration>
52                 <executions>
53                     <execution>
54                         <goals>
55                             <goal>repackage</goal>
56                         </goals>
57                     </execution>
58                 </executions>
59             </plugin>
60             <plugin>
61                 <groupId>org.springframework.boot</groupId>
62                 <artifactId>spring-boot-maven-plugin</artifactId>
63             </plugin>
64         </plugins>
65     </build>
66 </project>