Check for existing VNF in VNFM
[so.git] / adapters / mso-vnfm-adapter / mso-vnfm-adapter-ext-clients / 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     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.onap.so.adapters</groupId>
7         <artifactId>mso-vnfm-adapter</artifactId>
8         <version>1.4.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>mso-vnfm-adapter-ext-clients</artifactId>
11     <properties>
12         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14         <swagger-core-version>1.5.15</swagger-core-version>
15         <okhttp-version>2.7.5</okhttp-version>
16         <gson-fire-version>1.8.2</gson-fire-version>
17         <threetenbp-version>1.3.5</threetenbp-version>
18     </properties>
19     <name>mso-vnfm-adapter-ext-clients</name>
20     <description>Clients for the vnfm adpater to use towards REST endpoints which are external to the VNFM adapter/</description>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>io.swagger</groupId>
26                 <artifactId>swagger-codegen-maven-plugin</artifactId>
27                 <version>2.3.1</version>
28                 <executions>
29                     <execution>
30                         <id>sol003-vnf-lcm-api</id>
31                         <goals>
32                             <goal>generate</goal>
33                         </goals>
34                         <configuration>
35                             <inputSpec>${basedir}/src/main/resources/SOL003-VNFLifecycleManagement-API.json</inputSpec>
36                             <language>java</language>
37                             <library>okhttp-gson</library>
38                             <output>${project.build.directory}/generated-sources/sol003-vnf-lcm</output>
39                             <apiPackage>org.onap.so.adapters.vnfmadapter.extclients.vnfm.api</apiPackage>
40                             <modelPackage>org.onap.so.adapters.vnfmadapter.extclients.vnfm.model</modelPackage>
41                             <configOptions>
42                                 <jackson>true</jackson>
43                                 <sourceFolder>src/gen/java/main</sourceFolder>
44                                 <withXml>true</withXml>
45                                 <useRxJava2>true</useRxJava2>
46                                 <serializableModel>true</serializableModel>
47                             </configOptions>
48                         </configuration>
49                     </execution>
50                 </executions>
51             </plugin>
52         </plugins>
53     </build>
54
55     <dependencies>
56         <dependency>
57             <groupId>io.swagger</groupId>
58             <artifactId>swagger-annotations</artifactId>
59             <version>${swagger-core-version}</version>
60         </dependency>
61         <dependency>
62             <groupId>com.squareup.okhttp</groupId>
63             <artifactId>okhttp</artifactId>
64             <version>${okhttp-version}</version>
65         </dependency>
66         <dependency>
67             <groupId>com.squareup.okhttp</groupId>
68             <artifactId>logging-interceptor</artifactId>
69             <version>${okhttp-version}</version>
70         </dependency>
71         <dependency>
72             <groupId>com.google.code.gson</groupId>
73             <artifactId>gson</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>io.gsonfire</groupId>
77             <artifactId>gson-fire</artifactId>
78             <version>${gson-fire-version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.threeten</groupId>
82             <artifactId>threetenbp</artifactId>
83             <version>${threetenbp-version}</version>
84         </dependency>
85     </dependencies>
86 </project>