blob: 5bce9c66f4a095fbe869a38ce22c6ff3a92e701c [file] [log] [blame]
Benjamin, Max4f774ee2020-04-28 15:13:12 -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</groupId>
6 <artifactId>graph-inventory</artifactId>
seshukm1c8d0202021-02-15 20:35:29 +05307 <version>1.8.0-SNAPSHOT</version>
Benjamin, Max4f774ee2020-04-28 15:13:12 -04008 </parent>
9 <artifactId>aai-client</artifactId>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040010 <build>
11 <pluginManagement>
12 <plugins>
13 <plugin>
14 <groupId>org.eclipse.m2e</groupId>
15 <artifactId>lifecycle-mapping</artifactId>
16 <version>1.0.0</version>
17 <configuration>
18 <lifecycleMappingMetadata>
19 <pluginExecutions>
20 <pluginExecution>
21 <pluginExecutionFilter>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-dependency-plugin</artifactId>
24 <versionRange>[1.0.0,)</versionRange>
25 <goals>
26 <goal>unpack</goal>
27 </goals>
28 </pluginExecutionFilter>
29 <action>
30 <execute />
31 </action>
32 </pluginExecution>
33 <pluginExecution>
34 <pluginExecutionFilter>
35 <groupId>org.onap.so</groupId>
36 <artifactId>fluent-builder-maven-plugin</artifactId>
37 <goals>
38 <goal>generate-builders</goal>
39 </goals>
40 <versionRange>[0.0,)</versionRange>
41 </pluginExecutionFilter>
42 <action>
43 <execute />
44 </action>
45 </pluginExecution>
46 </pluginExecutions>
47 </lifecycleMappingMetadata>
48 </configuration>
49 </plugin>
50 </plugins>
51 </pluginManagement>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-dependency-plugin</artifactId>
56 <executions>
57 <execution>
58 <id>unpack</id>
59 <phase>generate-sources</phase>
60 <goals>
61 <goal>unpack</goal>
62 </goals>
63 <configuration>
64 <artifactItems>
65 <artifactItem>
66 <groupId>org.onap.aai.traversal</groupId>
67 <artifactId>aai-traversal</artifactId>
zm33017b89762020-12-04 00:13:14 +080068 <version>1.7.2</version>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040069 <outputDirectory>${project.build.directory}/antlr</outputDirectory>
70 <includes>**/*.g4</includes>
71 </artifactItem>
72 <artifactItem>
73 <groupId>org.onap.aai.schema-service</groupId>
74 <artifactId>aai-schema</artifactId>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040075 <outputDirectory>${project.build.directory}/swagger</outputDirectory>
76 <includes>**/*.yaml</includes>
77 </artifactItem>
78 </artifactItems>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <groupId>org.onap.so</groupId>
85 <artifactId>fluent-builder-maven-plugin</artifactId>
86 <version>${project.version}</version>
87 <executions>
88 <execution>
89 <goals>
90 <goal>generate-builders</goal>
91 </goals>
92 <configuration>
93 <destination>${project.build.directory}/generated-sources</destination>
94 <destinationClasspath>org.onap.aaiclient.client.generated.fluentbuilders</destinationClasspath>
95 <builderName>AAIFluentTypeBuilder</builderName>
Benjamin, Max6a9bc852020-11-30 20:08:25 -050096 <swaggerLocation>${project.build.directory}/swagger/onap/aai_swagger_yaml/aai_swagger_LATEST.yaml</swaggerLocation>
Benjamin, Maxe7f75272020-04-30 10:41:46 -040097 <singularBuilderClass>org.onap.aaiclient.client.aai.entities.uri.AAIFluentSingleType</singularBuilderClass>
98 <pluralBuilderClass>org.onap.aaiclient.client.aai.entities.uri.AAIFluentPluralType</pluralBuilderClass>
99 <topLevelBuilderClass>org.onap.aaiclient.client.aai.entities.uri.AAIFluentTopLevelType</topLevelBuilderClass>
100 <baseBuilderClass>org.onap.aaiclient.client.graphinventory.GraphInventoryFluentTypeBase</baseBuilderClass>
101 <singularClass>org.onap.aaiclient.client.aai.AAIObjectType</singularClass>
102 <pluralClass>org.onap.aaiclient.client.aai.AAIObjectPlurals</pluralClass>
103 <nameClass>org.onap.aaiclient.client.aai.AAIObjectName</nameClass>
Benjamin, Maxf687d9f2020-09-10 11:15:57 -0400104 <singleFragmentClass>org.onap.aaiclient.client.aai.entities.uri.AAISingleFragment</singleFragmentClass>
105 <pluralFragmentClass>org.onap.aaiclient.client.aai.entities.uri.AAIPluralFragment</pluralFragmentClass>
Benjamin, Maxe7f75272020-04-30 10:41:46 -0400106 </configuration>
107 </execution>
108 </executions>
109 </plugin>
110 <plugin>
111 <groupId>org.codehaus.mojo</groupId>
112 <artifactId>build-helper-maven-plugin</artifactId>
113 <executions>
114 <execution>
115 <id>add-source</id>
116 <phase>generate-sources</phase>
117 <goals>
118 <goal>add-source</goal>
119 </goals>
120 <configuration>
121 <sources>
122 <source>${project.build.directory}/generated-sources/fluent/</source>
123 </sources>
124 </configuration>
125 </execution>
126 </executions>
127 </plugin>
128 </plugins>
129 </build>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400130 <dependencies>
131 <dependency>
132 <groupId>org.onap.so</groupId>
133 <artifactId>common</artifactId>
134 <version>${project.version}</version>
135 </dependency>
136 <dependency>
137 <groupId>com.google.guava</groupId>
138 <artifactId>guava</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400139 </dependency>
140 <dependency>
141 <groupId>org.apache.httpcomponents</groupId>
142 <artifactId>httpclient</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400143 <scope>compile</scope>
144 <optional>true</optional>
145 </dependency>
146 <dependency>
147 <groupId>org.apache.cxf</groupId>
148 <artifactId>cxf-rt-rs-client</artifactId>
149 <version>3.2.5</version>
150 <optional>true</optional>
151 </dependency>
152 <dependency>
153 <groupId>com.fasterxml.jackson.core</groupId>
154 <artifactId>jackson-databind</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400155 </dependency>
156 <dependency>
157 <groupId>com.fasterxml.jackson.core</groupId>
158 <artifactId>jackson-annotations</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400159 </dependency>
160 <dependency>
161 <groupId>com.fasterxml.jackson.module</groupId>
162 <artifactId>jackson-module-jaxb-annotations</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400163 </dependency>
164 <dependency>
165 <groupId>com.fasterxml.jackson.jaxrs</groupId>
166 <artifactId>jackson-jaxrs-json-provider</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400167 </dependency>
168 <dependency>
169 <groupId>commons-io</groupId>
170 <artifactId>commons-io</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400171 </dependency>
172 <dependency>
173 <groupId>ch.qos.logback</groupId>
174 <artifactId>logback-classic</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400175 </dependency>
176 <dependency>
177 <groupId>org.onap.logging-analytics</groupId>
178 <artifactId>logging-slf4j</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400179 </dependency>
180 <dependency>
181 <groupId>org.onap.logging-analytics</groupId>
182 <artifactId>logging-filter-base</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400183 </dependency>
184 <dependency>
185 <groupId>org.onap.logging-analytics</groupId>
186 <artifactId>logging-filter-spring</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400187 </dependency>
188 <dependency>
189 <groupId>junit</groupId>
190 <artifactId>junit</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400191 <scope>test</scope>
192 </dependency>
193 <dependency>
194 <groupId>org.hamcrest</groupId>
195 <artifactId>hamcrest-all</artifactId>
196 <version>1.3</version>
197 <scope>test</scope>
198 </dependency>
199 <dependency>
200 <groupId>javax.ws.rs</groupId>
201 <artifactId>javax.ws.rs-api</artifactId>
202 <version>2.1</version>
203 </dependency>
204 <dependency>
205 <groupId>com.github.tomakehurst</groupId>
206 <artifactId>wiremock-standalone</artifactId>
207 <version>2.13.0</version>
208 <scope>test</scope>
209 <exclusions>
210 <exclusion>
211 <groupId>org.mortbay.jetty</groupId>
212 <artifactId>jetty</artifactId>
213 </exclusion>
214 <exclusion>
215 <groupId>com.google.guava</groupId>
216 <artifactId>guava</artifactId>
217 </exclusion>
218 <exclusion>
219 <groupId>com.fasterxml.jackson.core</groupId>
220 <artifactId>jackson-core</artifactId>
221 </exclusion>
222 <exclusion>
223 <groupId>com.fasterxml.jackson.core</groupId>
224 <artifactId>jackson-annotations</artifactId>
225 </exclusion>
226 <exclusion>
227 <groupId>com.fasterxml.jackson.core</groupId>
228 <artifactId>jackson-databind</artifactId>
229 </exclusion>
230 <exclusion>
231 <groupId>org.apache.httpcomponents</groupId>
232 <artifactId>httpclient</artifactId>
233 </exclusion>
234 <exclusion>
235 <groupId>org.skyscreamer</groupId>
236 <artifactId>jsonassert</artifactId>
237 </exclusion>
238 <exclusion>
239 <groupId>xmlunit</groupId>
240 <artifactId>xmlunit</artifactId>
241 </exclusion>
242 <exclusion>
243 <groupId>com.jayway.jsonpath</groupId>
244 <artifactId>json-path</artifactId>
245 </exclusion>
246 <exclusion>
247 <groupId>net.sf.jopt-simple</groupId>
248 <artifactId>jopt-simple</artifactId>
249 </exclusion>
250 </exclusions>
251 </dependency>
252 <dependency>
253 <groupId>javax.servlet</groupId>
254 <artifactId>javax.servlet-api</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400255 </dependency>
256 <dependency>
257 <groupId>org.mockito</groupId>
258 <artifactId>mockito-core</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400259 <scope>test</scope>
260 </dependency>
261 <dependency>
262 <groupId>com.shazam</groupId>
263 <artifactId>shazamcrest</artifactId>
264 <version>0.11</version>
265 <scope>test</scope>
266 <exclusions>
267 <exclusion>
268 <groupId>com.google.guava</groupId>
269 <artifactId>guava</artifactId>
270 </exclusion>
271 <exclusion>
272 <groupId>org.apache.commons</groupId>
273 <artifactId>commons-lang3</artifactId>
274 </exclusion>
275 </exclusions>
276 </dependency>
277 <dependency>
278 <groupId>org.onap.aai.schema-service</groupId>
279 <artifactId>aai-schema</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400280 </dependency>
281 <dependency>
282 <groupId>com.jayway.jsonpath</groupId>
283 <artifactId>json-path</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400284 </dependency>
285 <dependency>
286 <groupId>org.apache.commons</groupId>
287 <artifactId>commons-lang3</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400288 </dependency>
289 <dependency>
290 <groupId>org.springframework</groupId>
291 <artifactId>spring-web</artifactId>
Benjamin, Max4f774ee2020-04-28 15:13:12 -0400292 </dependency>
293 <dependency>
294 <groupId>org.antlr</groupId>
295 <artifactId>antlr4-runtime</artifactId>
296 <version>4.7</version>
297 </dependency>
298 <dependency>
299 <groupId>net.jodah</groupId>
300 <artifactId>failsafe</artifactId>
301 <version>2.0.1</version>
302 </dependency>
303 <dependency>
304 <groupId>org.reflections</groupId>
305 <artifactId>reflections</artifactId>
306 <version>0.9.11</version>
307 </dependency>
308 </dependencies>
309</project>