Add Tests for VNF Package Mgmt - Subscribe and Notify
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / vnfm-simulator / vnfm-service / 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.vnfm</groupId>
6     <artifactId>vnfm-simulator</artifactId>
7     <version>1.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>vnfm-service</artifactId>
10   <name>${project.artifactId}</name>
11
12   <properties>
13     <okhttp-version>2.7.5</okhttp-version>
14     <gson-version>2.8.1</gson-version>
15   </properties>
16   <dependencies>
17     <dependency>
18       <groupId>org.onap.so.adapters</groupId>
19       <artifactId>mso-vnfm-adapter-ext-clients</artifactId>
20       <version>1.4.3</version>
21       <exclusions>
22         <exclusion>
23           <groupId>javax.servlet</groupId>
24           <artifactId>javax.servlet-api</artifactId>
25         </exclusion>
26         <exclusion>
27           <groupId>com.github.tomakehurst</groupId>
28           <artifactId>wiremock-standalone</artifactId>
29         </exclusion>
30       </exclusions>
31     </dependency>
32     <dependency>
33       <groupId>org.springframework.boot</groupId>
34       <artifactId>spring-boot-starter-data-jpa</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.springframework.boot</groupId>
38       <artifactId>spring-boot-devtools</artifactId>
39       <scope>runtime</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.springframework.security.oauth</groupId>
43       <artifactId>spring-security-oauth2</artifactId>
44       <version>2.3.6.RELEASE</version>
45     </dependency>
46     <dependency>
47       <groupId>junit</groupId>
48       <artifactId>junit</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>io.swagger</groupId>
53       <artifactId>swagger-jaxrs</artifactId>
54       <version>1.5.0</version>
55     </dependency>
56     <dependency>
57       <groupId>org.apache.directory.studio</groupId>
58       <artifactId>org.apache.commons.io</artifactId>
59       <version>2.4</version>
60     </dependency>
61     <dependency>
62       <groupId>com.googlecode.json-simple</groupId>
63       <artifactId>json-simple</artifactId>
64       <version>1.1.1</version>
65     </dependency>
66     <dependency>
67       <groupId>io.springfox</groupId>
68       <artifactId>springfox-swagger-ui</artifactId>
69       <version>2.6.1</version>
70       <scope>compile</scope>
71     </dependency>
72     <dependency>
73       <groupId>io.springfox</groupId>
74       <artifactId>springfox-swagger2</artifactId>
75       <version>2.6.1</version>
76       <scope>compile</scope>
77     </dependency>
78     <dependency>
79       <groupId>com.fasterxml.jackson.core</groupId>
80       <artifactId>jackson-databind</artifactId>
81       <version>2.9.8</version>
82     </dependency>
83     <dependency>
84       <groupId>com.h2database</groupId>
85       <artifactId>h2</artifactId>
86     </dependency>
87     <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
88     <dependency>
89       <groupId>commons-beanutils</groupId>
90       <artifactId>commons-beanutils</artifactId>
91       <version>1.9.3</version>
92     </dependency>
93     <dependency>
94       <groupId>org.modelmapper</groupId>
95       <artifactId>modelmapper</artifactId>
96       <version>2.3.0</version>
97     </dependency>
98     <dependency>
99       <groupId>com.squareup.okio</groupId>
100       <artifactId>okio</artifactId>
101       <version>1.13.0</version>
102     </dependency>
103     <dependency>
104       <groupId>com.squareup.okhttp</groupId>
105       <artifactId>okhttp</artifactId>
106       <version>${okhttp-version}</version>
107     </dependency>
108     <dependency>
109       <groupId>com.squareup.okhttp</groupId>
110       <artifactId>logging-interceptor</artifactId>
111       <version>${okhttp-version}</version>
112     </dependency>
113     <dependency>
114       <groupId>com.google.code.gson</groupId>
115       <artifactId>gson</artifactId>
116       <version>${gson-version}</version>
117     </dependency>
118     <dependency>
119       <groupId>org.onap.so</groupId>
120       <artifactId>common</artifactId>
121       <version>1.4.3</version>
122       <exclusions>
123         <exclusion>
124           <groupId>javax.servlet</groupId>
125           <artifactId>javax.servlet-api</artifactId>
126         </exclusion>
127       </exclusions>
128     </dependency>
129     <dependency>
130       <groupId>org.onap.so.simulators.vnfm</groupId>
131       <artifactId>vnfm-api</artifactId>
132       <version>${project.version}</version>
133     </dependency>
134     <dependency>
135       <groupId>org.apache.httpcomponents</groupId>
136       <artifactId>httpclient</artifactId>
137       <version>4.5.8</version>
138     </dependency>
139     <dependency>
140       <groupId>org.onap.so.simulators</groupId>
141       <artifactId>common</artifactId>
142       <version>${project.version}</version>
143     </dependency>
144   </dependencies>
145   <build>
146     <plugins>
147       <plugin>
148         <groupId>org.springframework.boot</groupId>
149         <artifactId>spring-boot-maven-plugin</artifactId>
150         <configuration>
151           <mainClass>org.onap.so.svnfm.simulator.config.SvnfmApplication</mainClass>
152         </configuration>
153         <executions>
154           <execution>
155             <goals>
156               <goal>repackage</goal>
157             </goals>
158           </execution>
159         </executions>
160       </plugin>
161       <plugin>
162         <groupId>org.springframework.boot</groupId>
163         <artifactId>spring-boot-maven-plugin</artifactId>
164       </plugin>
165     </plugins>
166     <resources>
167       <resource>
168         <directory>src/main/resources</directory>
169         <filtering>true</filtering>
170         <excludes>
171           <exclude>**/*.p12</exclude>
172           <exclude>**/*.jks</exclude>
173         </excludes>
174       </resource>
175       <resource>
176         <directory>src/main/resources</directory>
177         <filtering>false</filtering>
178         <includes>
179           <include>**/*.p12</include>
180           <include>**/*.jks</include>
181         </includes>
182       </resource>
183     </resources>
184   </build>
185 </project>