682aac7dfb00016c6466eff5234aafff5a69a10f
[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.13.3-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                 <groovy.version>2.5.15</groovy.version>
40                 <mockito.core.version>3.4.0</mockito.core.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>org.apache.commons</groupId>
126                         <artifactId>commons-lang3</artifactId>
127                 </dependency>
128                 <dependency>
129                         <groupId>commons-cli</groupId>
130                         <artifactId>commons-cli</artifactId>
131                         <version>1.5.0</version>
132         </dependency>
133                 <dependency>
134                         <groupId>org.apache.commons</groupId>
135                         <artifactId>commons-text</artifactId>
136                         <scope>compile</scope>
137                 </dependency>
138                 <dependency>
139                         <groupId>com.att.eelf</groupId>
140                         <artifactId>eelf-core</artifactId>
141                         <version>2.0.0-oss</version>
142                 </dependency>
143                 <dependency>
144                         <groupId>org.codehaus.jackson</groupId>
145                         <artifactId>jackson-core-asl</artifactId>
146                 </dependency>
147                 <dependency>
148                         <groupId>org.codehaus.jackson</groupId>
149                         <artifactId>jackson-mapper-asl</artifactId>
150                 </dependency>
151                 <dependency>
152                         <groupId>junit</groupId>
153                         <artifactId>junit</artifactId>
154                         <scope>test</scope>
155                 </dependency>
156                 <dependency>
157                         <groupId>org.hamcrest</groupId>
158                         <artifactId>hamcrest-junit</artifactId>
159                         <scope>test</scope>
160                 </dependency>
161                 <dependency>
162                         <groupId>org.hamcrest</groupId>
163                         <artifactId>hamcrest-core</artifactId>
164                         <scope>test</scope>
165                 </dependency>
166                 <dependency>
167                         <groupId>org.mockito</groupId>
168                         <artifactId>mockito-core</artifactId>
169                         <scope>test</scope>
170                 </dependency>
171                 <dependency>
172                         <groupId>com.google.guava</groupId>
173                         <artifactId>guava</artifactId>
174                 </dependency>
175                 <dependency>
176                         <groupId>org.janusgraph</groupId>
177                         <artifactId>janusgraph-core</artifactId>
178                         <exclusions>
179                                 <exclusion>
180                                         <groupId>org.slf4j</groupId>
181                                         <artifactId>slf4j-log4j12</artifactId>
182                                 </exclusion>
183                                 <exclusion>
184                                         <groupId>dom4j</groupId>
185                                         <artifactId>dom4j</artifactId>
186                                 </exclusion>
187                         </exclusions>
188                 </dependency>
189                 <dependency>
190                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
191                         <artifactId>jackson-jaxrs-json-provider</artifactId>
192                 </dependency>
193                 <dependency>
194                         <groupId>com.googlecode.json-simple</groupId>
195                         <artifactId>json-simple</artifactId>
196                 </dependency>
197                 <dependency>
198                         <groupId>javax.xml.bind</groupId>
199                         <artifactId>jaxb-api</artifactId>
200                 </dependency>
201                 <dependency>
202                         <groupId>com.sun.xml.bind</groupId>
203                         <artifactId>jaxb-impl</artifactId>
204                 </dependency>
205                 <dependency>
206                         <groupId>com.sun.xml.bind</groupId>
207                         <artifactId>jaxb-core</artifactId>
208                 </dependency>
209                 <dependency>
210                         <groupId>org.eclipse.persistence</groupId>
211                         <artifactId>eclipselink</artifactId>
212                 </dependency>
213                 <dependency>
214                         <groupId>com.google.code.gson</groupId>
215                         <artifactId>gson</artifactId>
216                 </dependency>
217                 <dependency>
218                         <groupId>com.jayway.jsonpath</groupId>
219                         <artifactId>json-path</artifactId>
220                 </dependency>
221                 <dependency>
222                         <groupId>com.jayway.jsonpath</groupId>
223                         <artifactId>json-path-assert</artifactId>
224                         <scope>test</scope>
225                 </dependency>
226                 <dependency>
227                         <groupId>org.eclipse.jetty</groupId>
228                         <artifactId>jetty-util</artifactId>
229                 </dependency>
230                 <dependency>
231                         <groupId>com.fasterxml.jackson.module</groupId>
232                         <artifactId>jackson-module-jaxb-annotations</artifactId>
233                 </dependency>
234                 <dependency>
235                         <groupId>com.sun.jersey</groupId>
236                         <artifactId>jersey-core</artifactId>
237                 </dependency>
238                 <dependency>
239                         <groupId>com.sun.jersey</groupId>
240                         <artifactId>jersey-client</artifactId>
241                 </dependency>
242                 <dependency>
243                         <groupId>com.sun.jersey</groupId>
244                         <artifactId>jersey-json</artifactId>
245                 </dependency>
246                 <dependency>
247                         <groupId>org.apache.tinkerpop</groupId>
248                         <artifactId>gremlin-core</artifactId>
249                 </dependency>
250                 <dependency>
251                         <groupId>org.apache.tinkerpop</groupId>
252                         <artifactId>tinkergraph-gremlin</artifactId>
253                 </dependency>
254                 <dependency>
255                         <groupId>org.slf4j</groupId>
256                         <artifactId>slf4j-api</artifactId>
257                 </dependency>
258                 <dependency>
259                         <groupId>xml-apis</groupId>
260                         <artifactId>xml-apis</artifactId>
261                         <version>1.4.01</version>
262                 </dependency>
263                 <dependency>
264                         <groupId>com.beust</groupId>
265                         <artifactId>jcommander</artifactId>
266                 </dependency>
267                 <dependency>
268                         <groupId>org.json</groupId>
269                         <artifactId>json</artifactId>
270                 </dependency>
271                 <dependency>
272                         <groupId>com.bazaarvoice.jolt</groupId>
273                         <artifactId>jolt-complete</artifactId>
274                 </dependency>
275                 <dependency>
276                         <groupId>ch.qos.logback</groupId>
277                         <artifactId>logback-core</artifactId>
278                 </dependency>
279                 <dependency>
280                         <groupId>ch.qos.logback</groupId>
281                         <artifactId>logback-classic</artifactId>
282                 </dependency>
283                 <dependency>
284                         <groupId>ch.qos.logback</groupId>
285                         <artifactId>logback-access</artifactId>
286                 </dependency>
287                 <dependency>
288                         <groupId>org.apache.activemq</groupId>
289                         <artifactId>activemq-broker</artifactId>
290                 </dependency>
291                 <dependency>
292                         <groupId>org.apache.activemq</groupId>
293                         <artifactId>activemq-openwire-legacy</artifactId>
294                 </dependency>
295                 <dependency>
296                         <groupId>com.opencsv</groupId>
297                         <artifactId>opencsv</artifactId>
298                 </dependency>
299                 <dependency>
300                         <groupId>org.freemarker</groupId>
301                         <artifactId>freemarker</artifactId>
302                 </dependency>
303                 <dependency>
304                         <groupId>com.github.fge</groupId>
305                         <artifactId>json-patch</artifactId>
306                 </dependency>
307                 <dependency>
308                         <groupId>org.codehaus.groovy</groupId>
309                         <artifactId>groovy</artifactId>
310             <version>${groovy.version}</version>
311                         <classifier>indy</classifier>
312                 </dependency>
313                 <dependency>
314                         <groupId>org.springframework</groupId>
315                         <artifactId>spring-context</artifactId>
316                 </dependency>
317                 <dependency>
318                         <groupId>org.springframework</groupId>
319                         <artifactId>spring-web</artifactId>
320                 </dependency>
321                 <dependency>
322                         <groupId>org.springframework</groupId>
323                         <artifactId>spring-core</artifactId>
324                 </dependency>
325                 <dependency>
326                         <groupId>org.springframework</groupId>
327                         <artifactId>spring-expression</artifactId>
328                 </dependency>
329                 <dependency>
330                         <groupId>org.springframework</groupId>
331                         <artifactId>spring-webmvc</artifactId>
332                 </dependency>
333                 <dependency>
334                         <groupId>org.springframework</groupId>
335                         <artifactId>spring-test</artifactId>
336                         <scope>test</scope>
337                 </dependency>
338                 <dependency>
339                         <groupId>org.springframework.boot</groupId>
340                         <artifactId>spring-boot-test</artifactId>
341                         <scope>test</scope>
342                 </dependency>
343                 <dependency>
344                         <groupId>org.skyscreamer</groupId>
345                         <artifactId>jsonassert</artifactId>
346                         <scope>test</scope>
347                 </dependency>
348                 <dependency>
349                         <groupId>org.apache.httpcomponents</groupId>
350                         <artifactId>httpclient</artifactId>
351                 </dependency>
352                 <dependency>
353                         <groupId>org.apache.tinkerpop</groupId>
354                         <artifactId>gremlin-groovy</artifactId>
355                         <exclusions>
356                                 <exclusion>
357                                         <groupId>org.codehaus.groovy</groupId>
358                                         <artifactId>groovy</artifactId>
359                                 </exclusion>
360                         </exclusions>
361                 </dependency>
362                 <dependency>
363                         <groupId>org.springframework</groupId>
364                         <artifactId>spring-jms</artifactId>
365                 </dependency>
366                 <dependency>
367                         <groupId>com.fasterxml.jackson.core</groupId>
368                         <artifactId>jackson-core</artifactId>
369                 </dependency>
370                 <dependency>
371                         <groupId>com.fasterxml.jackson.core</groupId>
372                         <artifactId>jackson-databind</artifactId>
373                 </dependency>
374                 <dependency>
375                         <groupId>com.fasterxml.jackson.core</groupId>
376                         <artifactId>jackson-annotations</artifactId>
377                 </dependency>
378                 <dependency>
379                         <groupId>com.fasterxml.jackson.dataformat</groupId>
380                         <artifactId>jackson-dataformat-yaml</artifactId>
381                 </dependency>
382                 <dependency>
383                                 <groupId>org.apache.logging.log4j</groupId>
384                                 <artifactId>log4j</artifactId>
385                                 <version>${log4j.version}</version>
386                                 <type>pom</type>
387                 </dependency>
388         </dependencies>
389
390         <!-- Plugins and repositories -->
391         <pluginRepositories>
392                 <pluginRepository>
393                         <id>central</id>
394                         <url>https://repo1.maven.org/maven2</url>
395                 </pluginRepository>
396                 <pluginRepository>
397                         <id>EvoSuite</id>
398                         <name>EvoSuite Repository</name>
399                         <url>https://www.evosuite.org/m2</url>
400                 </pluginRepository>
401         </pluginRepositories>
402
403         <reporting>
404                 <plugins>
405                         <plugin>
406                                 <groupId>org.apache.maven.plugins</groupId>
407                                 <artifactId>maven-javadoc-plugin</artifactId>
408                                 <version>2.10.4</version>
409                                 <configuration>
410                                         <failOnError>false</failOnError>
411                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
412                                         <docletArtifact>
413                                                 <groupId>org.umlgraph</groupId>
414                                                 <artifactId>umlgraph</artifactId>
415                                                 <version>5.6</version>
416                                         </docletArtifact>
417                                         <additionalparam>-views</additionalparam>
418                                         <useStandardDocletOptions>true</useStandardDocletOptions>
419                                 </configuration>
420                         </plugin>
421                 </plugins>
422         </reporting>
423 </project>