blob: 7e866f9008161f7e48bccc063225877c81de6b6b [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-api</artifactId>
11 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
MichaelMorris90a91362019-03-13 21:32:25 +000014 <gson-fire-version>1.8.2</gson-fire-version>
15 <retrofit-version>2.3.0</retrofit-version>
16 <threetenbp-version>1.3.5</threetenbp-version>
17 <oltu-version>1.0.1</oltu-version>
18 <swagger-core-version>1.5.15</swagger-core-version>
MichaelMorris8aeffa02019-03-13 17:24:42 +000019 </properties>
20 <name>mso-vnfm-adapter-api</name>
21 <description>MSO VNFM adapter API</description>
MichaelMorris90a91362019-03-13 21:32:25 +000022
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>io.swagger</groupId>
27 <artifactId>swagger-codegen-maven-plugin</artifactId>
28 <version>2.3.1</version>
29 <executions>
30 <execution>
31 <id>vnfmadapter</id>
32 <goals>
33 <goal>generate</goal>
34 </goals>
35 <configuration>
36 <inputSpec>${basedir}/src/main/resources/vnfmadapter.yaml</inputSpec>
37 <language>java</language>
38 <library>retrofit2</library>
39 <output>${project.build.directory}/generated-sources/vnfmadapter</output>
40 <apiPackage>org.onap.vnfmadapter.v1.api</apiPackage>
41 <modelPackage>org.onap.vnfmadapter.v1.model</modelPackage>
42 <configOptions>
43 <jackson>true</jackson>
44 <sourceFolder>src/gen/java/main</sourceFolder>
45 <withXml>true</withXml>
46 <useRxJava2>true</useRxJava2>
waqas.ikram314bba32019-03-22 14:39:44 +000047 <serializableModel>true</serializableModel>
MichaelMorris90a91362019-03-13 21:32:25 +000048 </configOptions>
49 </configuration>
50 </execution>
51 </executions>
52 </plugin>
53 </plugins>
54 </build>
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.retrofit2</groupId>
63 <artifactId>converter-gson</artifactId>
64 <version>${retrofit-version}</version>
65 </dependency>
66 <dependency>
67 <groupId>com.squareup.retrofit2</groupId>
68 <artifactId>retrofit</artifactId>
69 <version>${retrofit-version}</version>
70 </dependency>
71 <dependency>
72 <groupId>com.squareup.retrofit2</groupId>
73 <artifactId>converter-scalars</artifactId>
74 <version>${retrofit-version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.oltu.oauth2</groupId>
78 <artifactId>org.apache.oltu.oauth2.client</artifactId>
79 <version>${oltu-version}</version>
80 </dependency>
81 <dependency>
82 <groupId>io.gsonfire</groupId>
83 <artifactId>gson-fire</artifactId>
84 <version>${gson-fire-version}</version>
85 </dependency>
86 <dependency>
87 <groupId>org.threeten</groupId>
88 <artifactId>threetenbp</artifactId>
89 <version>${threetenbp-version}</version>
90 </dependency>
91 <dependency>
92 <groupId>io.reactivex.rxjava2</groupId>
93 <artifactId>rxjava</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>com.squareup.retrofit2</groupId>
97 <artifactId>adapter-rxjava2</artifactId>
98 <version>${retrofit-version}</version>
99 </dependency>
100 <dependency>
101 <groupId>com.google.code.gson</groupId>
102 <artifactId>gson</artifactId>
103 </dependency>
104 </dependencies>
MichaelMorris8aeffa02019-03-13 17:24:42 +0000105</project>