Release aai/aai-common
[aai/aai-common.git] / aai-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START======================================================
4 org.onap.aai
5 ===============================================================================
6 Copyright © 2019 AT&T Intellectual Property. All rights reserved.
7 ===============================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ===========LICENSE_END=========================================================
20 -->
21 <project
22         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
23         xmlns="http://maven.apache.org/POM/4.0.0"
24         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
25         <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.aai.aai-common</groupId>
28                 <artifactId>aai-parent</artifactId>
29                 <version>1.9.0</version>
30                 <relativePath>../aai-parent/pom.xml</relativePath>
31         </parent>
32         <artifactId>aai-core</artifactId>
33         <name>aai-core</name>
34         <packaging>jar</packaging>
35         <properties>
36                 <springframework.version>4.3.24.RELEASE</springframework.version>
37
38                 <jacoco.line.coverage.limit>0.50</jacoco.line.coverage.limit>
39                 <gremlin.version>3.2.2</gremlin.version>
40                 <groovy.version>2.4.15</groovy.version>
41                 <!-- Start of Default ONAP Schema Properties -->
42                 <aai.wiki.link>https://wiki.onap.org/</aai.wiki.link>
43                 <gendoc.version>v15</gendoc.version>
44                 <aai.release>onap</aai.release>
45                 <schema.uri.base.path>/aai</schema.uri.base.path>
46                 <schema.configuration.location>N/A</schema.configuration.location>
47                 <schema.nodes.location>aai-schema/src/main/resources/${aai.release}/oxm</schema.nodes.location>
48                 <schema.edges.location>aai-schema/src/main/resources/${aai.release}/dbedgerules</schema.edges.location>
49                 <schema.version.depth.start>v10</schema.version.depth.start>
50                 <schema.version.related.link.start>v10</schema.version.related.link.start>
51                 <schema.version.app.root.start>v11</schema.version.app.root.start>
52                 <schema.version.namespace.change.start>v12</schema.version.namespace.change.start>
53                 <schema.version.edge.label.start>v12</schema.version.edge.label.start>
54                 <schema.version.api.default>v19</schema.version.api.default>
55                 <schema.version.list>v10,v11,v12,v13,v14,v15,v16,v17,v18,v19</schema.version.list>
56                 <schema.translator.list>config</schema.translator.list>
57                 <!-- End of Default ONAP Schema Properties -->
58         </properties>
59         <profiles>
60                 <!-- Start of ONAP profile -->
61                 <profile>
62                         <id>onap</id>
63                         <properties>
64                                 <springframework.version>4.3.24.RELEASE</springframework.version>
65                                 <aai.release>onap</aai.release>
66                                 <schema.configuration.location>N/A</schema.configuration.location>
67                                 <schema.nodes.location>aai-schema/src/main/resources/${aai.release}/oxm</schema.nodes.location>
68                                 <schema.edges.location>aai-schema/src/main/resources/${aai.release}/dbedgerules</schema.edges.location>
69                                 <schema.version.depth.start>v10</schema.version.depth.start>
70                                 <schema.version.related.link.start>v10</schema.version.related.link.start>
71                                 <schema.version.app.root.start>v11</schema.version.app.root.start>
72                                 <schema.version.edge.label.start>v12</schema.version.edge.label.start>
73                                 <schema.version.namespace.change.start>v12</schema.version.namespace.change.start>
74                                 <schema.version.api.default>v19</schema.version.api.default>
75                                 <schema.version.list>v10,v11,v12,v13,v14,v15,v16,v17,v18,v19</schema.version.list>
76                                 <gendoc.version>v15</gendoc.version>
77                         </properties>
78                 </profile>
79                 <!-- End of ONAP profile -->
80         </profiles>
81         <build>
82                 <plugins>
83                         <plugin>
84                                 <groupId>org.apache.maven.plugins</groupId>
85                                 <artifactId>maven-surefire-plugin</artifactId>
86                                 <configuration>
87                                         <systemPropertyVariables>
88                                                 <AJSC_HOME>.</AJSC_HOME>
89                                                 <BUNDLECONFIG_DIR>bundleconfig-local</BUNDLECONFIG_DIR>
90                                         </systemPropertyVariables>
91                                 </configuration>
92                         </plugin>
93                         <plugin>
94                                 <groupId>org.apache.maven.plugins</groupId>
95                                 <artifactId>maven-dependency-plugin</artifactId>
96                                 <version>2.8</version>
97                         </plugin>
98                         <plugin>
99                                 <!-- explicitly define maven-deploy-plugin after other to force exec
100                                         order -->
101                                 <groupId>org.apache.maven.plugins</groupId>
102                                 <artifactId>maven-deploy-plugin</artifactId>
103                         </plugin>
104                         <plugin>
105                                 <groupId>org.apache.maven.plugins</groupId>
106                                 <artifactId>maven-site-plugin</artifactId>
107                         </plugin>
108                 </plugins>
109         </build>
110
111         <dependencies>
112                 <dependency>
113                         <groupId>org.onap.aai.aai-common</groupId>
114                         <artifactId>aai-schema-ingest</artifactId>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.onap.aai.aai-common</groupId>
118                         <artifactId>aai-aaf-auth</artifactId>
119                 </dependency>
120                 <dependency>
121                         <groupId>org.onap.aai.aai-common</groupId>
122                         <artifactId>aai-annotations</artifactId>
123                 </dependency>
124                 <dependency>
125                         <groupId>commons-lang</groupId>
126                         <artifactId>commons-lang</artifactId>
127                 </dependency>
128                 <dependency>
129                         <groupId>org.apache.commons</groupId>
130                         <artifactId>commons-text</artifactId>
131                         <scope>compile</scope>
132                 </dependency>
133                 <dependency>
134                         <groupId>com.att.eelf</groupId>
135                         <artifactId>eelf-core</artifactId>
136                         <exclusions><!-- excluding transitive dependency coming from this artifact,
137                                         as we would need powermock-api-mockito2 -->
138                                 <exclusion>
139                                         <groupId>org.powermock</groupId>
140                                         <artifactId>powermock-api-mockito</artifactId>
141                                 </exclusion>
142                         </exclusions>
143                 </dependency>
144                 <dependency>
145                         <groupId>org.codehaus.jackson</groupId>
146                         <artifactId>jackson-core-asl</artifactId>
147                 </dependency>
148                 <dependency>
149                         <groupId>org.codehaus.jackson</groupId>
150                         <artifactId>jackson-mapper-asl</artifactId>
151                 </dependency>
152                 <dependency>
153                         <groupId>junit</groupId>
154                         <artifactId>junit</artifactId>
155                         <scope>test</scope>
156                 </dependency>
157                 <dependency>
158                         <groupId>org.hamcrest</groupId>
159                         <artifactId>hamcrest-junit</artifactId>
160                         <scope>test</scope>
161                 </dependency>
162                 <dependency>
163                         <groupId>org.hamcrest</groupId>
164                         <artifactId>hamcrest-core</artifactId>
165                         <scope>test</scope>
166                 </dependency>
167                 <dependency>
168                         <groupId>org.mockito</groupId>
169                         <artifactId>mockito-all</artifactId>
170                         <scope>test</scope>
171                 </dependency>
172                 <dependency>
173                         <groupId>org.mockito</groupId>
174                         <artifactId>mockito-core</artifactId>
175                         <scope>test</scope>
176                 </dependency>
177                 <dependency>
178                         <groupId>com.google.guava</groupId>
179                         <artifactId>guava</artifactId>
180                 </dependency>
181                 <dependency>
182                         <groupId>org.janusgraph</groupId>
183                         <artifactId>janusgraph-core</artifactId>
184                         <exclusions>
185                                 <exclusion>
186                                         <groupId>org.slf4j</groupId>
187                                         <artifactId>slf4j-log4j12</artifactId>
188                                 </exclusion>
189                                 <exclusion>
190                                         <groupId>dom4j</groupId>
191                                         <artifactId>dom4j</artifactId>
192                                 </exclusion>
193                         </exclusions>
194                 </dependency>
195                 <dependency>
196                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
197                         <artifactId>jackson-jaxrs-json-provider</artifactId>
198                 </dependency>
199                 <dependency>
200                         <groupId>com.googlecode.json-simple</groupId>
201                         <artifactId>json-simple</artifactId>
202                 </dependency>
203                 <dependency>
204                         <groupId>javax.xml.bind</groupId>
205                         <artifactId>jaxb-api</artifactId>
206                 </dependency>
207                 <dependency>
208                         <groupId>com.sun.xml.bind</groupId>
209                         <artifactId>jaxb-impl</artifactId>
210                 </dependency>
211                 <dependency>
212                         <groupId>com.sun.xml.bind</groupId>
213                         <artifactId>jaxb-core</artifactId>
214                 </dependency>
215                 <dependency>
216                         <groupId>org.eclipse.persistence</groupId>
217                         <artifactId>eclipselink</artifactId>
218                 </dependency>
219                 <dependency>
220                         <groupId>com.google.code.gson</groupId>
221                         <artifactId>gson</artifactId>
222                 </dependency>
223                 <dependency>
224                         <groupId>com.jayway.jsonpath</groupId>
225                         <artifactId>json-path</artifactId>
226                 </dependency>
227                 <dependency>
228                         <groupId>com.jayway.jsonpath</groupId>
229                         <artifactId>json-path-assert</artifactId>
230                         <scope>test</scope>
231                 </dependency>
232                 <dependency>
233                         <groupId>org.eclipse.jetty</groupId>
234                         <artifactId>jetty-util</artifactId>
235                 </dependency>
236                 <dependency>
237                         <groupId>com.fasterxml.jackson.module</groupId>
238                         <artifactId>jackson-module-jaxb-annotations</artifactId>
239                 </dependency>
240                 <dependency>
241                         <groupId>com.sun.jersey</groupId>
242                         <artifactId>jersey-core</artifactId>
243                 </dependency>
244                 <dependency>
245                         <groupId>com.sun.jersey</groupId>
246                         <artifactId>jersey-client</artifactId>
247                 </dependency>
248                 <dependency>
249                         <groupId>com.sun.jersey</groupId>
250                         <artifactId>jersey-json</artifactId>
251                 </dependency>
252                 <dependency>
253                         <groupId>org.apache.tinkerpop</groupId>
254                         <artifactId>gremlin-core</artifactId>
255                 </dependency>
256                 <dependency>
257                         <groupId>org.apache.tinkerpop</groupId>
258                         <artifactId>tinkergraph-gremlin</artifactId>
259                 </dependency>
260                 <dependency>
261                         <groupId>org.slf4j</groupId>
262                         <artifactId>slf4j-api</artifactId>
263                 </dependency>
264                 <dependency>
265                         <groupId>com.fasterxml.jackson.core</groupId>
266                         <artifactId>jackson-annotations</artifactId>
267
268                 </dependency>
269                 <dependency>
270                         <groupId>com.fasterxml.jackson.dataformat</groupId>
271                         <artifactId>jackson-dataformat-yaml</artifactId>
272                 </dependency>
273                 <dependency>
274                         <groupId>xml-apis</groupId>
275                         <artifactId>xml-apis</artifactId>
276                 </dependency>
277                 <dependency>
278                         <groupId>commons-cli</groupId>
279                         <artifactId>commons-cli</artifactId>
280                 </dependency>
281                 <dependency>
282                         <groupId>com.beust</groupId>
283                         <artifactId>jcommander</artifactId>
284                 </dependency>
285                 <dependency>
286                         <groupId>org.json</groupId>
287                         <artifactId>json</artifactId>
288
289                 </dependency>
290                 <dependency>
291                         <groupId>com.bazaarvoice.jolt</groupId>
292                         <artifactId>jolt-complete</artifactId>
293                 </dependency>
294                 <dependency>
295                         <groupId>ch.qos.logback</groupId>
296                         <artifactId>logback-core</artifactId>
297                 </dependency>
298                 <dependency>
299                         <groupId>ch.qos.logback</groupId>
300                         <artifactId>logback-classic</artifactId>
301                 </dependency>
302                 <dependency>
303                         <groupId>ch.qos.logback</groupId>
304                         <artifactId>logback-access</artifactId>
305                 </dependency>
306                 <dependency>
307                         <groupId>org.apache.activemq</groupId>
308                         <artifactId>activemq-broker</artifactId>
309                 </dependency>
310                 <dependency>
311                         <groupId>org.apache.activemq</groupId>
312                         <artifactId>activemq-openwire-legacy</artifactId>
313                 </dependency>
314                 <dependency>
315                         <groupId>com.opencsv</groupId>
316                         <artifactId>opencsv</artifactId>
317                 </dependency>
318                 <dependency>
319                         <groupId>org.freemarker</groupId>
320                         <artifactId>freemarker</artifactId>
321                 </dependency>
322                 <dependency>
323                         <groupId>com.github.fge</groupId>
324                         <artifactId>json-patch</artifactId>
325                 </dependency>
326                 <dependency>
327                         <groupId>org.codehaus.groovy</groupId>
328                         <artifactId>groovy</artifactId>
329                         <classifier>indy</classifier>
330                 </dependency>
331                 <dependency>
332                         <groupId>org.springframework</groupId>
333                         <artifactId>spring-context</artifactId>
334                 </dependency>
335                 <dependency>
336                         <groupId>org.springframework</groupId>
337                         <artifactId>spring-web</artifactId>
338                 </dependency>
339                 <dependency>
340                         <groupId>org.springframework</groupId>
341                         <artifactId>spring-core</artifactId>
342                 </dependency>
343                 <dependency>
344                         <groupId>org.springframework</groupId>
345                         <artifactId>spring-expression</artifactId>
346                 </dependency>
347                 <dependency>
348                         <groupId>org.springframework</groupId>
349                         <artifactId>spring-webmvc</artifactId>
350                 </dependency>
351                 <dependency>
352                         <groupId>org.springframework</groupId>
353                         <artifactId>spring-test</artifactId>
354                         <scope>test</scope>
355                 </dependency>
356                 <dependency>
357                         <groupId>org.springframework.boot</groupId>
358                         <artifactId>spring-boot-test</artifactId>
359                         <scope>test</scope>
360                 </dependency>
361                 <dependency>
362                         <groupId>org.powermock</groupId>
363                         <artifactId>powermock-module-javaagent</artifactId>
364                         <scope>test</scope>
365                 </dependency>
366                 <dependency>
367                         <groupId>org.skyscreamer</groupId>
368                         <artifactId>jsonassert</artifactId>
369                         <scope>test</scope>
370                 </dependency>
371                 <dependency>
372                         <groupId>org.apache.httpcomponents</groupId>
373                         <artifactId>httpclient</artifactId>
374                 </dependency>
375                 <dependency>
376                         <groupId>org.apache.tinkerpop</groupId>
377                         <artifactId>gremlin-groovy</artifactId>
378                         <exclusions>
379                                 <exclusion>
380                                         <groupId>org.codehaus.groovy</groupId>
381                                         <artifactId>groovy</artifactId>
382                                 </exclusion>
383                         </exclusions>
384                 </dependency>
385                 <dependency>
386                         <groupId>org.springframework</groupId>
387                         <artifactId>spring-jms</artifactId>
388                 </dependency>
389                 <dependency>
390                         <groupId>com.fasterxml.jackson.core</groupId>
391                         <artifactId>jackson-core</artifactId>
392                 </dependency>
393                 <dependency>
394                         <groupId>com.fasterxml.jackson.core</groupId>
395                         <artifactId>jackson-databind</artifactId>
396                 </dependency>
397                 <dependency>
398                         <groupId>com.fasterxml.jackson.core</groupId>
399                         <artifactId>jackson-annotations</artifactId>
400                 </dependency>
401                 <dependency>
402                         <groupId>log4j</groupId>
403                         <artifactId>log4j</artifactId>
404                 </dependency>
405         </dependencies>
406
407         <!-- Plugins and repositories -->
408         <pluginRepositories>
409                 <pluginRepository>
410                         <id>central</id>
411                         <url>http://repo1.maven.org/maven2</url>
412                 </pluginRepository>
413                 <pluginRepository>
414                         <id>EvoSuite</id>
415                         <name>EvoSuite Repository</name>
416                         <url>http://www.evosuite.org/m2</url>
417                 </pluginRepository>
418         </pluginRepositories>
419
420         <reporting>
421                 <plugins>
422                         <plugin>
423                                 <groupId>org.apache.maven.plugins</groupId>
424                                 <artifactId>maven-javadoc-plugin</artifactId>
425                                 <version>2.10.4</version>
426                                 <configuration>
427                                         <failOnError>false</failOnError>
428                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
429                                         <docletArtifact>
430                                                 <groupId>org.umlgraph</groupId>
431                                                 <artifactId>umlgraph</artifactId>
432                                                 <version>5.6</version>
433                                         </docletArtifact>
434                                         <additionalparam>-views</additionalparam>
435                                         <useStandardDocletOptions>true</useStandardDocletOptions>
436                                 </configuration>
437                         </plugin>
438                 </plugins>
439         </reporting>
440 </project>