blob: 8e5deafd217153a1f18a11e1e1031037eb8d811d [file] [log] [blame]
MichaelMorris8aeffa02019-03-13 17:24:42 +00001<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>
MichaelMorris44a205e2019-04-02 13:46:47 +000014 <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>
MichaelMorris8aeffa02019-03-13 17:24:42 +000018 </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>
MichaelMorris44a205e2019-04-02 13:46:47 +000021
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>
MichaelMorris8aeffa02019-03-13 17:24:42 +000086</project>