blob: 56d425745f3477e1f793da352abaaae16bef854e [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>
47 </configOptions>
48 </configuration>
49 </execution>
50 </executions>
51 </plugin>
52 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
56 <groupId>io.swagger</groupId>
57 <artifactId>swagger-annotations</artifactId>
58 <version>${swagger-core-version}</version>
59 </dependency>
60 <dependency>
61 <groupId>com.squareup.retrofit2</groupId>
62 <artifactId>converter-gson</artifactId>
63 <version>${retrofit-version}</version>
64 </dependency>
65 <dependency>
66 <groupId>com.squareup.retrofit2</groupId>
67 <artifactId>retrofit</artifactId>
68 <version>${retrofit-version}</version>
69 </dependency>
70 <dependency>
71 <groupId>com.squareup.retrofit2</groupId>
72 <artifactId>converter-scalars</artifactId>
73 <version>${retrofit-version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.oltu.oauth2</groupId>
77 <artifactId>org.apache.oltu.oauth2.client</artifactId>
78 <version>${oltu-version}</version>
79 </dependency>
80 <dependency>
81 <groupId>io.gsonfire</groupId>
82 <artifactId>gson-fire</artifactId>
83 <version>${gson-fire-version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.threeten</groupId>
87 <artifactId>threetenbp</artifactId>
88 <version>${threetenbp-version}</version>
89 </dependency>
90 <dependency>
91 <groupId>io.reactivex.rxjava2</groupId>
92 <artifactId>rxjava</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>com.squareup.retrofit2</groupId>
96 <artifactId>adapter-rxjava2</artifactId>
97 <version>${retrofit-version}</version>
98 </dependency>
99 <dependency>
100 <groupId>com.google.code.gson</groupId>
101 <artifactId>gson</artifactId>
102 </dependency>
103 </dependencies>
MichaelMorris8aeffa02019-03-13 17:24:42 +0000104</project>