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