Merge "Adding Infrastructure for Simulate Request for SDC"
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-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     <parent>
4         <artifactId>so-simulators</artifactId>
5         <groupId>org.onap.so.simulators</groupId>
6         <version>1.0-SNAPSHOT</version>
7     </parent>
8     <modelVersion>4.0.0</modelVersion>
9
10     <artifactId>sdc-simulator</artifactId>
11     <name>${project.artifactId}</name>
12
13     <build>
14         <plugins>
15             <plugin>
16                 <groupId>org.springframework.boot</groupId>
17                 <artifactId>spring-boot-maven-plugin</artifactId>
18                 <configuration>
19                     <mainClass>org.onap.so.sdc.simulator.SdcSimulatorApplication</mainClass>
20                 </configuration>
21                 <executions>
22                     <execution>
23                         <goals>
24                             <goal>repackage</goal>
25                         </goals>
26                     </execution>
27                 </executions>
28             </plugin>
29             <plugin>
30                 <groupId>org.springframework.boot</groupId>
31                 <artifactId>spring-boot-maven-plugin</artifactId>
32             </plugin>
33         </plugins>
34     </build>
35
36 </project>