Merge "Implementation of TN NSSMF WF on SO"
[so.git] / graph-inventory / aai-client / pom.xml
1 <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>
7     <version>1.7.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>aai-client</artifactId>
10   <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>
68                   <version>1.6.3</version>
69                   <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>
75                   <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>
96               <swaggerLocation>${project.build.directory}/swagger/onap/aai_swagger_yaml/aai_swagger_v19.yaml</swaggerLocation>
97               <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>
104               <singleFragmentClass>org.onap.aaiclient.client.aai.entities.uri.AAISingleFragment</singleFragmentClass>
105               <pluralFragmentClass>org.onap.aaiclient.client.aai.entities.uri.AAIPluralFragment</pluralFragmentClass>
106             </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>
130   <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>
139     </dependency>
140     <dependency>
141       <groupId>org.apache.httpcomponents</groupId>
142       <artifactId>httpclient</artifactId>
143       <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>
155     </dependency>
156     <dependency>
157       <groupId>com.fasterxml.jackson.core</groupId>
158       <artifactId>jackson-annotations</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>com.fasterxml.jackson.module</groupId>
162       <artifactId>jackson-module-jaxb-annotations</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>com.fasterxml.jackson.jaxrs</groupId>
166       <artifactId>jackson-jaxrs-json-provider</artifactId>
167     </dependency>
168     <dependency>
169       <groupId>commons-io</groupId>
170       <artifactId>commons-io</artifactId>
171     </dependency>
172     <dependency>
173       <groupId>ch.qos.logback</groupId>
174       <artifactId>logback-classic</artifactId>
175     </dependency>
176     <dependency>
177       <groupId>org.onap.logging-analytics</groupId>
178       <artifactId>logging-slf4j</artifactId>
179     </dependency>
180     <dependency>
181       <groupId>org.onap.logging-analytics</groupId>
182       <artifactId>logging-filter-base</artifactId>
183     </dependency>
184     <dependency>
185       <groupId>org.onap.logging-analytics</groupId>
186       <artifactId>logging-filter-spring</artifactId>
187     </dependency>
188     <dependency>
189       <groupId>junit</groupId>
190       <artifactId>junit</artifactId>
191       <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>
255     </dependency>
256     <dependency>
257       <groupId>org.mockito</groupId>
258       <artifactId>mockito-core</artifactId>
259       <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>
280     </dependency>
281     <dependency>
282       <groupId>com.jayway.jsonpath</groupId>
283       <artifactId>json-path</artifactId>
284     </dependency>
285     <dependency>
286       <groupId>org.apache.commons</groupId>
287       <artifactId>commons-lang3</artifactId>
288     </dependency>
289     <dependency>
290       <groupId>org.springframework</groupId>
291       <artifactId>spring-web</artifactId>
292     </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>