27e7c3ea972df100850f49e09476f4bcf0ce647c
[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     <artifactId>sdc-simulator</artifactId>
10     <name>${project.artifactId}</name>
11     <dependencies>
12         <dependency>
13             <groupId>org.springframework.boot</groupId>
14             <artifactId>spring-boot-starter-security</artifactId>
15             <exclusions>
16                 <exclusion>
17                     <groupId>org.springframework.boot</groupId>
18                     <artifactId>spring-boot-starter-tomcat</artifactId>
19                 </exclusion>
20             </exclusions>
21         </dependency>
22     </dependencies>
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.springframework.boot</groupId>
27                 <artifactId>spring-boot-maven-plugin</artifactId>
28                 <configuration>
29                     <mainClass>org.onap.so.sdcsimulator.SdcSimulatorApplication</mainClass>
30                 </configuration>
31                 <executions>
32                     <execution>
33                         <goals>
34                             <goal>repackage</goal>
35                         </goals>
36                     </execution>
37                 </executions>
38             </plugin>
39             <plugin>
40                 <groupId>org.springframework.boot</groupId>
41                 <artifactId>spring-boot-maven-plugin</artifactId>
42             </plugin>
43         </plugins>
44     </build>
45 </project>