Release 1.13.6 Docker Artifact
[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.12.0-SNAPSHOT</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.5.15</groovy.version>
41                 <mockito.core.version>2.4.0</mockito.core.version>
42                 <!-- Start of Default ONAP Schema Properties -->
43                 <aai.wiki.link>https://wiki.onap.org/</aai.wiki.link>
44                 <gendoc.version>v15</gendoc.version>
45                 <aai.release>onap</aai.release>
46                 <schema.uri.base.path>/aai</schema.uri.base.path>
47                 <schema.configuration.location>N/A</schema.configuration.location>
48                 <schema.nodes.location>aai-schema/src/main/resources/${aai.release}/oxm</schema.nodes.location>
49                 <schema.edges.location>aai-schema/src/main/resources/${aai.release}/dbedgerules</schema.edges.location>
50                 <schema.version.depth.start>v10</schema.version.depth.start>
51                 <schema.version.related.link.start>v10</schema.version.related.link.start>
52                 <schema.version.app.root.start>v11</schema.version.app.root.start>
53                 <schema.version.namespace.change.start>v12</schema.version.namespace.change.start>
54                 <schema.version.edge.label.start>v12</schema.version.edge.label.start>
55                 <schema.version.api.default>v19</schema.version.api.default>
56                 <schema.version.list>v10,v11,v12,v13,v14,v15,v16,v17,v18,v19</schema.version.list>
57                 <schema.translator.list>config</schema.translator.list>
58                 <!-- End of Default ONAP Schema Properties -->
59         </properties>
60         <profiles>
61                 <!-- Start of ONAP profile -->
62                 <profile>
63                         <id>onap</id>
64                         <properties>
65                                 <springframework.version>4.3.24.RELEASE</springframework.version>
66                                 <aai.release>onap</aai.release>
67                                 <schema.configuration.location>N/A</schema.configuration.location>
68                                 <schema.nodes.location>aai-schema/src/main/resources/${aai.release}/oxm</schema.nodes.location>
69                                 <schema.edges.location>aai-schema/src/main/resources/${aai.release}/dbedgerules</schema.edges.location>
70                                 <schema.version.depth.start>v10</schema.version.depth.start>
71                                 <schema.version.related.link.start>v10</schema.version.related.link.start>
72                                 <schema.version.app.root.start>v11</schema.version.app.root.start>
73                                 <schema.version.edge.label.start>v12</schema.version.edge.label.start>
74                                 <schema.version.namespace.change.start>v12</schema.version.namespace.change.start>
75                                 <schema.version.api.default>v19</schema.version.api.default>
76                                 <schema.version.list>v10,v11,v12,v13,v14,v15,v16,v17,v18,v19</schema.version.list>
77                                 <gendoc.version>v15</gendoc.version>
78                         </properties>
79                 </profile>
80                 <!-- End of ONAP profile -->
81         </profiles>
82         <build>
83                 <plugins>
84                         <plugin>
85                                 <groupId>org.apache.maven.plugins</groupId>
86                                 <artifactId>maven-surefire-plugin</artifactId>
87                                 <configuration>
88                                         <systemPropertyVariables>
89                                                 <AJSC_HOME>.</AJSC_HOME>
90                                                 <BUNDLECONFIG_DIR>bundleconfig-local</BUNDLECONFIG_DIR>
91                                         </systemPropertyVariables>
92                                 </configuration>
93                         </plugin>
94                         <plugin>
95                                 <groupId>org.apache.maven.plugins</groupId>
96                                 <artifactId>maven-dependency-plugin</artifactId>
97                                 <version>2.8</version>
98                         </plugin>
99                         <plugin>
100                                 <!-- explicitly define maven-deploy-plugin after other to force exec
101                                         order -->
102                                 <groupId>org.apache.maven.plugins</groupId>
103                                 <artifactId>maven-deploy-plugin</artifactId>
104                         </plugin>
105                         <plugin>
106                                 <groupId>org.apache.maven.plugins</groupId>
107                                 <artifactId>maven-site-plugin</artifactId>
108                         </plugin>
109                 </plugins>
110         </build>
111
112         <dependencies>
113                 <dependency>
114                         <groupId>org.onap.aai.aai-common</groupId>
115                         <artifactId>aai-schema-ingest</artifactId>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.onap.aai.aai-common</groupId>
119                         <artifactId>aai-aaf-auth</artifactId>
120                 </dependency>
121                 <dependency>
122                         <groupId>org.onap.aai.aai-common</groupId>
123                         <artifactId>aai-annotations</artifactId>
124                 </dependency>
125                 <dependency>
126                         <groupId>org.apache.commons</groupId>
127                         <artifactId>commons-lang3</artifactId>
128                 </dependency>
129                 <dependency>
130                         <groupId>commons-cli</groupId>
131                         <artifactId>commons-cli</artifactId>
132                         <version>1.5.0</version>
133         </dependency>
134                 <dependency>
135                         <groupId>org.apache.commons</groupId>
136                         <artifactId>commons-text</artifactId>
137                         <scope>compile</scope>
138                 </dependency>
139                 <dependency>
140                         <groupId>com.att.eelf</groupId>
141                         <artifactId>eelf-core</artifactId>
142                         <version>2.0.0-oss</version>
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-core</artifactId>
170                         <scope>test</scope>
171                 </dependency>
172                 <dependency>
173                         <groupId>com.google.guava</groupId>
174                         <artifactId>guava</artifactId>
175                 </dependency>
176                 <dependency>
177                         <groupId>org.janusgraph</groupId>
178                         <artifactId>janusgraph-core</artifactId>
179                         <exclusions>
180                                 <exclusion>
181                                         <groupId>org.slf4j</groupId>
182                                         <artifactId>slf4j-log4j12</artifactId>
183                                 </exclusion>
184                                 <exclusion>
185                                         <groupId>dom4j</groupId>
186                                         <artifactId>dom4j</artifactId>
187                                 </exclusion>
188                         </exclusions>
189                 </dependency>
190                 <dependency>
191                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
192                         <artifactId>jackson-jaxrs-json-provider</artifactId>
193                 </dependency>
194                 <dependency>
195                         <groupId>com.googlecode.json-simple</groupId>
196                         <artifactId>json-simple</artifactId>
197                 </dependency>
198                 <dependency>
199                         <groupId>javax.xml.bind</groupId>
200                         <artifactId>jaxb-api</artifactId>
201                 </dependency>
202                 <dependency>
203                         <groupId>com.sun.xml.bind</groupId>
204                         <artifactId>jaxb-impl</artifactId>
205                 </dependency>
206                 <dependency>
207                         <groupId>com.sun.xml.bind</groupId>
208                         <artifactId>jaxb-core</artifactId>
209                 </dependency>
210                 <dependency>
211                         <groupId>org.eclipse.persistence</groupId>
212                         <artifactId>eclipselink</artifactId>
213                 </dependency>
214                 <dependency>
215                         <groupId>com.google.code.gson</groupId>
216                         <artifactId>gson</artifactId>
217                 </dependency>
218                 <dependency>
219                         <groupId>com.jayway.jsonpath</groupId>
220                         <artifactId>json-path</artifactId>
221                 </dependency>
222                 <dependency>
223                         <groupId>com.jayway.jsonpath</groupId>
224                         <artifactId>json-path-assert</artifactId>
225                         <scope>test</scope>
226                 </dependency>
227                 <dependency>
228                         <groupId>org.eclipse.jetty</groupId>
229                         <artifactId>jetty-util</artifactId>
230                 </dependency>
231                 <dependency>
232                         <groupId>com.fasterxml.jackson.module</groupId>
233                         <artifactId>jackson-module-jaxb-annotations</artifactId>
234                 </dependency>
235                 <dependency>
236                         <groupId>com.sun.jersey</groupId>
237                         <artifactId>jersey-core</artifactId>
238                 </dependency>
239                 <dependency>
240                         <groupId>com.sun.jersey</groupId>
241                         <artifactId>jersey-client</artifactId>
242                 </dependency>
243                 <dependency>
244                         <groupId>com.sun.jersey</groupId>
245                         <artifactId>jersey-json</artifactId>
246                 </dependency>
247                 <dependency>
248                         <groupId>org.apache.tinkerpop</groupId>
249                         <artifactId>gremlin-core</artifactId>
250                 </dependency>
251                 <dependency>
252                         <groupId>org.apache.tinkerpop</groupId>
253                         <artifactId>tinkergraph-gremlin</artifactId>
254                 </dependency>
255                 <dependency>
256                         <groupId>org.slf4j</groupId>
257                         <artifactId>slf4j-api</artifactId>
258                 </dependency>
259                 <dependency>
260                         <groupId>com.fasterxml.jackson.core</groupId>
261                         <artifactId>jackson-annotations</artifactId>
262
263                 </dependency>
264                 <dependency>
265                         <groupId>com.fasterxml.jackson.dataformat</groupId>
266                         <artifactId>jackson-dataformat-yaml</artifactId>
267                 </dependency>
268                 <dependency>
269                         <groupId>xml-apis</groupId>
270                         <artifactId>xml-apis</artifactId>
271                 </dependency>
272                 <dependency>
273                         <groupId>commons-cli</groupId>
274                         <artifactId>commons-cli</artifactId>
275                 </dependency>
276                 <dependency>
277                         <groupId>com.beust</groupId>
278                         <artifactId>jcommander</artifactId>
279                 </dependency>
280                 <dependency>
281                         <groupId>org.json</groupId>
282                         <artifactId>json</artifactId>
283
284                 </dependency>
285                 <dependency>
286                         <groupId>com.bazaarvoice.jolt</groupId>
287                         <artifactId>jolt-complete</artifactId>
288                 </dependency>
289                 <dependency>
290                         <groupId>ch.qos.logback</groupId>
291                         <artifactId>logback-core</artifactId>
292                 </dependency>
293                 <dependency>
294                         <groupId>ch.qos.logback</groupId>
295                         <artifactId>logback-classic</artifactId>
296                 </dependency>
297                 <dependency>
298                         <groupId>ch.qos.logback</groupId>
299                         <artifactId>logback-access</artifactId>
300                 </dependency>
301                 <dependency>
302                         <groupId>org.apache.activemq</groupId>
303                         <artifactId>activemq-broker</artifactId>
304                 </dependency>
305                 <dependency>
306                         <groupId>org.apache.activemq</groupId>
307                         <artifactId>activemq-openwire-legacy</artifactId>
308                 </dependency>
309                 <dependency>
310                         <groupId>com.opencsv</groupId>
311                         <artifactId>opencsv</artifactId>
312                 </dependency>
313                 <dependency>
314                         <groupId>org.freemarker</groupId>
315                         <artifactId>freemarker</artifactId>
316                 </dependency>
317                 <dependency>
318                         <groupId>com.github.fge</groupId>
319                         <artifactId>json-patch</artifactId>
320                 </dependency>
321                 <dependency>
322                         <groupId>org.codehaus.groovy</groupId>
323                         <artifactId>groovy</artifactId>
324             <version>${groovy.version}</version>
325                         <classifier>indy</classifier>
326                 </dependency>
327                 <dependency>
328                         <groupId>org.springframework</groupId>
329                         <artifactId>spring-context</artifactId>
330                 </dependency>
331                 <dependency>
332                         <groupId>org.springframework</groupId>
333                         <artifactId>spring-web</artifactId>
334                 </dependency>
335                 <dependency>
336                         <groupId>org.springframework</groupId>
337                         <artifactId>spring-core</artifactId>
338                 </dependency>
339                 <dependency>
340                         <groupId>org.springframework</groupId>
341                         <artifactId>spring-expression</artifactId>
342                 </dependency>
343                 <dependency>
344                         <groupId>org.springframework</groupId>
345                         <artifactId>spring-webmvc</artifactId>
346                 </dependency>
347                 <dependency>
348                         <groupId>org.springframework</groupId>
349                         <artifactId>spring-test</artifactId>
350                         <scope>test</scope>
351                 </dependency>
352                 <dependency>
353                         <groupId>org.springframework.boot</groupId>
354                         <artifactId>spring-boot-test</artifactId>
355                         <scope>test</scope>
356                 </dependency>
357                 <dependency>
358                         <groupId>org.powermock</groupId>
359                         <artifactId>powermock-module-javaagent</artifactId>
360                         <scope>test</scope>
361                 </dependency>
362                 <dependency>
363                         <groupId>org.skyscreamer</groupId>
364                         <artifactId>jsonassert</artifactId>
365                         <scope>test</scope>
366                 </dependency>
367                 <dependency>
368                         <groupId>org.apache.httpcomponents</groupId>
369                         <artifactId>httpclient</artifactId>
370                 </dependency>
371                 <dependency>
372                         <groupId>org.apache.tinkerpop</groupId>
373                         <artifactId>gremlin-groovy</artifactId>
374                         <exclusions>
375                                 <exclusion>
376                                         <groupId>org.codehaus.groovy</groupId>
377                                         <artifactId>groovy</artifactId>
378                                 </exclusion>
379                         </exclusions>
380                 </dependency>
381                 <dependency>
382                         <groupId>org.springframework</groupId>
383                         <artifactId>spring-jms</artifactId>
384                 </dependency>
385                 <dependency>
386                         <groupId>com.fasterxml.jackson.core</groupId>
387                         <artifactId>jackson-core</artifactId>
388                 </dependency>
389                 <dependency>
390                         <groupId>com.fasterxml.jackson.core</groupId>
391                         <artifactId>jackson-databind</artifactId>
392                 </dependency>
393                 <dependency>
394                         <groupId>com.fasterxml.jackson.core</groupId>
395                         <artifactId>jackson-annotations</artifactId>
396                 </dependency>
397         <dependency>
398             <groupId>org.apache.logging.log4j</groupId>
399             <artifactId>log4j</artifactId>
400             <version>${log4j.version}</version>
401             <type>pom</type>
402         </dependency>
403         </dependencies>
404
405         <!-- Plugins and repositories -->
406         <pluginRepositories>
407                 <pluginRepository>
408                         <id>central</id>
409                         <url>https://repo1.maven.org/maven2</url>
410                 </pluginRepository>
411                 <pluginRepository>
412                         <id>EvoSuite</id>
413                         <name>EvoSuite Repository</name>
414                         <url>https://www.evosuite.org/m2</url>
415                 </pluginRepository>
416         </pluginRepositories>
417
418         <reporting>
419                 <plugins>
420                         <plugin>
421                                 <groupId>org.apache.maven.plugins</groupId>
422                                 <artifactId>maven-javadoc-plugin</artifactId>
423                                 <version>2.10.4</version>
424                                 <configuration>
425                                         <failOnError>false</failOnError>
426                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
427                                         <docletArtifact>
428                                                 <groupId>org.umlgraph</groupId>
429                                                 <artifactId>umlgraph</artifactId>
430                                                 <version>5.6</version>
431                                         </docletArtifact>
432                                         <additionalparam>-views</additionalparam>
433                                         <useStandardDocletOptions>true</useStandardDocletOptions>
434                                 </configuration>
435                         </plugin>
436                 </plugins>
437         </reporting>
438 </project>