22994ff0c0d81e563e670b56f3a6edba81acbc73
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdnc-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>sdnc-simulator</artifactId>
10     <name>${project.artifactId}</name>
11     <properties>
12         <version.generic-resource-api-client>1.5.2</version.generic-resource-api-client>
13     </properties>
14     <dependencies>
15         <dependency>
16             <groupId>org.onap.sdnc.northbound</groupId>
17             <artifactId>generic-resource-api-client</artifactId>
18             <version>${version.generic-resource-api-client}</version>
19             <exclusions>
20                 <exclusion>
21                     <groupId>javax.ws.rs</groupId>
22                     <artifactId>jsr311-api</artifactId>
23                 </exclusion>
24                 <exclusion>
25                     <groupId>org.json</groupId>
26                     <artifactId>json</artifactId>
27                 </exclusion>
28             </exclusions>
29         </dependency>
30     </dependencies>
31     <build>
32         <plugins>
33             <plugin>
34                 <groupId>org.springframework.boot</groupId>
35                 <artifactId>spring-boot-maven-plugin</artifactId>
36                 <configuration>
37                     <mainClass>org.onap.so.sdncsimulator.SdncSimulatorApplication</mainClass>
38                 </configuration>
39                 <executions>
40                     <execution>
41                         <goals>
42                             <goal>repackage</goal>
43                         </goals>
44                     </execution>
45                 </executions>
46             </plugin>
47             <plugin>
48                 <groupId>org.springframework.boot</groupId>
49                 <artifactId>spring-boot-maven-plugin</artifactId>
50             </plugin>
51         </plugins>
52     </build>
53 </project>