Updating image version and fixing tests
[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"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <parent>
5                 <artifactId>so-simulators</artifactId>
6                 <groupId>org.onap.so.simulators</groupId>
7                 <version>1.0-SNAPSHOT</version>
8         </parent>
9         <modelVersion>4.0.0</modelVersion>
10         <artifactId>sdc-simulator</artifactId>
11         <name>${project.artifactId}</name>
12         <dependencies>
13                 <dependency>
14                         <groupId>${project.parent.groupId}</groupId>
15                         <artifactId>common</artifactId>
16                         <version>${project.version}</version>
17                 </dependency>
18                 <dependency>
19                         <groupId>org.springframework.boot</groupId>
20                         <artifactId>spring-boot-starter-security</artifactId>
21                         <exclusions>
22                                 <exclusion>
23                                         <groupId>org.springframework.boot</groupId>
24                                         <artifactId>spring-boot-starter-tomcat</artifactId>
25                                 </exclusion>
26                         </exclusions>
27                 </dependency>
28         </dependencies>
29         <build>
30                 <plugins>
31                         <plugin>
32                                 <groupId>org.springframework.boot</groupId>
33                                 <artifactId>spring-boot-maven-plugin</artifactId>
34                                 <configuration>
35                                         <mainClass>org.onap.so.sdcsimulator.SdcSimulatorApplication</mainClass>
36                                 </configuration>
37                                 <executions>
38                                         <execution>
39                                                 <goals>
40                                                         <goal>repackage</goal>
41                                                 </goals>
42                                         </execution>
43                                 </executions>
44                         </plugin>
45                         <plugin>
46                                 <groupId>org.springframework.boot</groupId>
47                                 <artifactId>spring-boot-maven-plugin</artifactId>
48                         </plugin>
49                 </plugins>
50         </build>
51 </project>