MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 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> |
MichaelMorris | 44a205e | 2019-04-02 13:46:47 +0000 | [diff] [blame] | 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> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 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> |
MichaelMorris | 44a205e | 2019-04-02 13:46:47 +0000 | [diff] [blame] | 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> |
MichaelMorris | 4602430 | 2019-04-04 16:06:42 +0000 | [diff] [blame^] | 50 | <execution> |
| 51 | <id>sol003-vnf-lcn-api</id> |
| 52 | <goals> |
| 53 | <goal>generate</goal> |
| 54 | </goals> |
| 55 | <configuration> |
| 56 | <inputSpec>${basedir}/src/main/resources/SOL003-VNFLifecycleManagementNotification-API.json</inputSpec> |
| 57 | <language>java</language> |
| 58 | <library>okhttp-gson</library> |
| 59 | <output>${project.build.directory}/generated-sources/sol003-vnf-lcn</output> |
| 60 | <apiPackage>org.onap.so.adapters.vnfmadapter.extclients.vnfm.lcn.api</apiPackage> |
| 61 | <modelPackage>org.onap.so.adapters.vnfmadapter.extclients.vnfm.lcn.model</modelPackage> |
| 62 | <configOptions> |
| 63 | <jackson>true</jackson> |
| 64 | <sourceFolder>src/gen/java/main</sourceFolder> |
| 65 | <withXml>true</withXml> |
| 66 | <useRxJava2>true</useRxJava2> |
| 67 | <serializableModel>true</serializableModel> |
| 68 | </configOptions> |
| 69 | </configuration> |
| 70 | </execution> |
MichaelMorris | 44a205e | 2019-04-02 13:46:47 +0000 | [diff] [blame] | 71 | </executions> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
| 75 | |
| 76 | <dependencies> |
| 77 | <dependency> |
| 78 | <groupId>io.swagger</groupId> |
| 79 | <artifactId>swagger-annotations</artifactId> |
| 80 | <version>${swagger-core-version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>com.squareup.okhttp</groupId> |
| 84 | <artifactId>okhttp</artifactId> |
| 85 | <version>${okhttp-version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>com.squareup.okhttp</groupId> |
| 89 | <artifactId>logging-interceptor</artifactId> |
| 90 | <version>${okhttp-version}</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>com.google.code.gson</groupId> |
| 94 | <artifactId>gson</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>io.gsonfire</groupId> |
| 98 | <artifactId>gson-fire</artifactId> |
| 99 | <version>${gson-fire-version}</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.threeten</groupId> |
| 103 | <artifactId>threetenbp</artifactId> |
| 104 | <version>${threetenbp-version}</version> |
| 105 | </dependency> |
| 106 | </dependencies> |
MichaelMorris | 8aeffa0 | 2019-03-13 17:24:42 +0000 | [diff] [blame] | 107 | </project> |