Upgrading current ETSI CSIT to latest honolulu
[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>${project.parent.groupId}</groupId>
14             <artifactId>common</artifactId>
15             <version>${project.version}</version>
16         </dependency>
17         <dependency>
18             <groupId>org.springframework.boot</groupId>
19             <artifactId>spring-boot-starter-security</artifactId>
20             <exclusions>
21                 <exclusion>
22                     <groupId>org.springframework.boot</groupId>
23                     <artifactId>spring-boot-starter-tomcat</artifactId>
24                 </exclusion>
25             </exclusions>
26         </dependency>
27     </dependencies>
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.springframework.boot</groupId>
32                 <artifactId>spring-boot-maven-plugin</artifactId>
33                 <configuration>
34                     <mainClass>org.onap.so.sdcsimulator.SdcSimulatorApplication</mainClass>
35                 </configuration>
36                 <executions>
37                     <execution>
38                         <goals>
39                             <goal>repackage</goal>
40                         </goals>
41                     </execution>
42                 </executions>
43             </plugin>
44             <plugin>
45                 <groupId>org.springframework.boot</groupId>
46                 <artifactId>spring-boot-maven-plugin</artifactId>
47             </plugin>
48         </plugins>
49     </build>
50 </project>