blob: b2cb22d60be29334b38616a155c29b07493a0116 [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>
waqas.ikram12bfb7b2020-04-08 15:48:21 +01006 <artifactId>etsi-sol003-lcm</artifactId>
seshukm1c8d0202021-02-15 20:35:29 +05307 <version>1.8.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
waqas.ikram12bfb7b2020-04-08 15:48:21 +01009 <artifactId>etsi-sol003-lcm-ext-clients</artifactId>
10 <name>ETSI SOL003 Life Cycle Management Adapter Ext Clients</name>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040011 <build>
12 <plugins>
13 <plugin>
14 <groupId>io.swagger</groupId>
15 <artifactId>swagger-codegen-maven-plugin</artifactId>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010016 <version>${version-swagger-codegen}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040017 <executions>
18 <execution>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010019 <id>sol003-vnf-lcm-api</id>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040020 <goals>
21 <goal>generate</goal>
22 </goals>
23 <configuration>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010024 <inputSpec>${basedir}/src/main/resources/SOL003-VNFLifecycleManagement-API.json</inputSpec>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040025 <language>java</language>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010026 <library>okhttp-gson</library>
27 <output>${project.build.directory}/generated-sources/sol003-vnf-lcm</output>
waqas.ikram7511bc22020-05-01 12:30:32 +010028 <apiPackage>org.onap.so.adapters.etsisol003adapter.lcm.extclients.vnfm.api</apiPackage>
29 <modelPackage>org.onap.so.adapters.etsisol003adapter.lcm.extclients.vnfm.model</modelPackage>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010030 <generateApiTests>false</generateApiTests>
31 <generateModelTests>false</generateModelTests>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040032 <configOptions>
33 <jackson>true</jackson>
34 <sourceFolder>src/gen/java/main</sourceFolder>
35 <withXml>true</withXml>
36 <useRxJava2>true</useRxJava2>
37 <serializableModel>true</serializableModel>
38 </configOptions>
39 </configuration>
40 </execution>
41 </executions>
42 </plugin>
Benjamin, Max26275322020-03-16 10:09:29 -040043 <plugin>
44 <groupId>org.codehaus.mojo</groupId>
45 <artifactId>build-helper-maven-plugin</artifactId>
46 <executions>
47 <execution>
48 <id>add-source</id>
49 <phase>generate-sources</phase>
50 <goals>
51 <goal>add-source</goal>
52 </goals>
53 <configuration>
54 <sources>
waqas.ikram12bfb7b2020-04-08 15:48:21 +010055 <source>${project.basedir}/target/generated-sources/sol003-vnf-lcm/src/gen/java/main</source>
Benjamin, Max26275322020-03-16 10:09:29 -040056 </sources>
57 </configuration>
58 </execution>
59 </executions>
60 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040061 </plugins>
Benjamin, Max168f9dd2020-03-17 14:27:16 -040062 <pluginManagement>
63 <plugins>
64 <plugin>
65 <groupId>org.eclipse.m2e</groupId>
66 <artifactId>lifecycle-mapping</artifactId>
67 <version>1.0.0</version>
68 <configuration>
69 <lifecycleMappingMetadata>
70 <pluginExecutions>
71 <pluginExecution>
72 <pluginExecutionFilter>
73 <groupId>io.swagger</groupId>
74 <artifactId>swagger-codegen-maven-plugin</artifactId>
75 <goals>
76 <goal>generate</goal>
77 </goals>
78 <versionRange>[2.2.0,)</versionRange>
79 </pluginExecutionFilter>
80 <action>
81 <execute>
82 <runOnIncremental>false</runOnIncremental>
83 </execute>
84 </action>
85 </pluginExecution>
86 </pluginExecutions>
87 </lifecycleMappingMetadata>
88 </configuration>
89 </plugin>
90 </plugins>
91 </pluginManagement>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040092 </build>
93 <dependencies>
94 <dependency>
95 <groupId>io.swagger</groupId>
96 <artifactId>swagger-annotations</artifactId>
97 <version>${swagger-core-version}</version>
98 </dependency>
99 <dependency>
100 <groupId>com.squareup.retrofit2</groupId>
101 <artifactId>converter-gson</artifactId>
102 <version>${retrofit-version}</version>
103 </dependency>
104 <dependency>
105 <groupId>com.squareup.retrofit2</groupId>
106 <artifactId>retrofit</artifactId>
107 <version>${retrofit-version}</version>
108 </dependency>
109 <dependency>
110 <groupId>com.squareup.retrofit2</groupId>
111 <artifactId>converter-scalars</artifactId>
112 <version>${retrofit-version}</version>
113 </dependency>
114 <dependency>
115 <groupId>org.apache.oltu.oauth2</groupId>
116 <artifactId>org.apache.oltu.oauth2.client</artifactId>
117 <version>${oltu-version}</version>
118 </dependency>
119 <dependency>
120 <groupId>io.gsonfire</groupId>
121 <artifactId>gson-fire</artifactId>
122 <version>${gson-fire-version}</version>
123 </dependency>
124 <dependency>
125 <groupId>org.threeten</groupId>
126 <artifactId>threetenbp</artifactId>
127 <version>${threetenbp-version}</version>
128 </dependency>
129 <dependency>
130 <groupId>io.reactivex.rxjava2</groupId>
131 <artifactId>rxjava</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>com.squareup.retrofit2</groupId>
135 <artifactId>adapter-rxjava2</artifactId>
136 <version>${retrofit-version}</version>
137 </dependency>
138 <dependency>
139 <groupId>com.google.code.gson</groupId>
140 <artifactId>gson</artifactId>
141 </dependency>
MichaelMorrisdf6508f2019-04-25 11:31:45 +0000142 <dependency>
143 <groupId>com.squareup.okio</groupId>
144 <artifactId>okio</artifactId>
waqas.ikram12bfb7b2020-04-08 15:48:21 +0100145 <version>${okio-version}</version>
MichaelMorrisdf6508f2019-04-25 11:31:45 +0000146 </dependency>
rope252439c3a22019-11-19 16:23:34 +0000147 <dependency>
rope252524b5c72019-12-20 13:14:13 +0000148 <groupId>com.squareup.okhttp3</groupId>
149 <artifactId>okhttp</artifactId>
150 <version>${okhttp3-version}</version>
151 </dependency>
152 <dependency>
153 <groupId>com.squareup.okhttp3</groupId>
154 <artifactId>logging-interceptor</artifactId>
155 <version>${okhttp3-version}</version>
156 </dependency>
157 <dependency>
158 <groupId>com.squareup.okhttp</groupId>
159 <artifactId>logging-interceptor</artifactId>
160 <version>${okhttp-version}</version>
161 </dependency>
162 <dependency>
163 <groupId>com.squareup.okhttp</groupId>
164 <artifactId>okhttp</artifactId>
165 <version>${okhttp-version}</version>
166 </dependency>
167 <dependency>
168 <groupId>com.squareup.okhttp</groupId>
169 <artifactId>logging-interceptor</artifactId>
170 <version>${okhttp-version}</version>
171 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400172 </dependencies>
waqas.ikram12bfb7b2020-04-08 15:48:21 +0100173</project>