blob: 9d9e33a5249f1de2e5b10d6fec5bb4bb6f500f6f [file] [log] [blame]
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04001<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.adapters</groupId>
6 <artifactId>mso-vnfm-adapter</artifactId>
7 <version>1.4.0-SNAPSHOT</version>
8 </parent>
9 <artifactId>mso-vnfm-adapter-api</artifactId>
10 <properties>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13 <gson-fire-version>1.8.2</gson-fire-version>
14 <retrofit-version>2.3.0</retrofit-version>
15 <threetenbp-version>1.3.5</threetenbp-version>
16 <oltu-version>1.0.1</oltu-version>
17 <swagger-core-version>1.5.15</swagger-core-version>
18 </properties>
19 <name>mso-vnfm-adapter-api</name>
20 <description>MSO VNFM adapter API</description>
MichaelMorris90a91362019-03-13 21:32:25 +000021
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040022 <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>vnfmadapter</id>
31 <goals>
32 <goal>generate</goal>
33 </goals>
34 <configuration>
35 <inputSpec>${basedir}/src/main/resources/vnfmadapter.yaml</inputSpec>
36 <language>java</language>
37 <library>retrofit2</library>
38 <output>${project.build.directory}/generated-sources/vnfmadapter</output>
39 <apiPackage>org.onap.vnfmadapter.v1.api</apiPackage>
40 <modelPackage>org.onap.vnfmadapter.v1.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 <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>
MichaelMorrisac9387c2019-04-25 11:31:45 +0000103 <dependency>
104 <groupId>com.squareup.okio</groupId>
105 <artifactId>okio</artifactId>
106 <version>1.13.0</version>
107 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400108 </dependencies>
MichaelMorris8aeffa02019-03-13 17:24:42 +0000109</project>