Upversion to 1.6.1
[aai/aai-common.git] / aai-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2018 AT&T Technologies and others. Licensed under the 
3         Apache License, Version 2.0 (the "License"); you may not use this file except 
4         in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 
5         Unless required by applicable law or agreed to in writing, software distributed 
6         under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
7         OR CONDITIONS OF ANY KIND, either express or implied. See the License for 
8         the specific language governing permissions and limitations under the License. -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
12         <modelVersion>4.0.0</modelVersion>
13         <parent>
14                 <groupId>org.onap.aai.aai-common</groupId>
15                 <artifactId>aai-common</artifactId>
16                 <version>1.6.1-SNAPSHOT</version>
17         </parent>
18         <artifactId>aai-parent</artifactId>
19         <name>aai-parent</name>
20         <packaging>pom</packaging>
21
22         <modules>
23
24         </modules>
25
26         <properties>
27
28                 <aaf.version>2.1.15</aaf.version>
29                 <codehaus.jackson.version>1.9.13</codehaus.jackson.version>
30                 <commons.beanutils.version>1.9.4</commons.beanutils.version>
31                 <commons.cli.version>1.4</commons.cli.version>
32                 <commons.configuration.version>1.10</commons.configuration.version>
33                 <commons.io.version>2.6</commons.io.version>
34                 <commons.lang.version>2.6</commons.lang.version>
35                 <commons.text.version>1.8</commons.text.version>
36                 <docker.fabric.version>0.31.0</docker.fabric.version>
37                 <eclipse.persistence.version>2.6.8</eclipse.persistence.version>
38                 <eelf.core.version>1.0.1-oss</eelf.core.version>
39                 <freemarker.version>2.3.29</freemarker.version>
40                 <google.guava.version>19.0</google.guava.version>
41                 <gremlin.version>3.2.11</gremlin.version>
42                 <groovy.version>2.4.17</groovy.version>
43                 <gson.version>2.8.6</gson.version>
44                 <hamcrest.junit.version>2.0.0.0</hamcrest.junit.version>
45                 <janusgraph.version>0.2.3</janusgraph.version>
46                 <javatuples.version>1.2</javatuples.version>
47                 <jaxb.version>2.2.12</jaxb.version>
48                 <jaxrs.version>2.0.1</jaxrs.version>
49                 <jcommander.version>1.78</jcommander.version>
50                 <jersey.version>1.19.4</jersey.version>
51                 <jnr.ffi.version>2.1.11</jnr.ffi.version>
52                 <jolt.version>0.0.24</jolt.version>
53                 <json.patch.version>1.9</json.patch.version>
54                 <json.version>20190722</json.version>
55                 <junit.version>4.12</junit.version>
56                 <logback.version>1.2.3</logback.version>
57                 <log4j.version>1.2.17</log4j.version>
58                 <mockito.all.version>1.10.19</mockito.all.version>
59                 <mockito.core.version>2.15.0</mockito.core.version>
60                 <opencsv.version>3.1</opencsv.version>
61                 <powermock.version>1.6.6</powermock.version>
62                 <spring.boot.version>1.5.22.RELEASE</spring.boot.version>
63                 <spring.web.version>4.3.25.RELEASE</spring.web.version>
64                 <spring.security.rsa.version>1.0.8.RELEASE</spring.security.rsa.version>
65                 <aai.common.logging.version>1.5.1</aai.common.logging.version>
66                 <aai.rest.client.version>1.5.1</aai.rest.client.version>
67         </properties>
68         <dependencyManagement>
69                 <dependencies>
70                         <dependency>
71                                 <groupId>org.springframework.boot</groupId>
72                                 <artifactId>spring-boot-dependencies</artifactId>
73                                 <version>${spring.boot.version}</version>
74                                 <type>pom</type>
75                                 <scope>import</scope>
76                         </dependency>
77
78                         <dependency>
79                                 <groupId>org.springframework.boot</groupId>
80                                 <artifactId>spring-boot-test</artifactId>
81                                 <scope>test</scope>
82                                 <version>${spring.boot.version}</version>
83                         </dependency>
84
85                         <dependency>
86                                 <groupId>commons-configuration</groupId>
87                                 <artifactId>commons-configuration</artifactId>
88                                 <version>${commons.configuration.version}</version>
89                         </dependency>
90
91                         <dependency>
92                                 <groupId>commons-lang</groupId>
93                                 <artifactId>commons-lang</artifactId>
94                                 <version>${commons.lang.version}</version>
95                         </dependency>
96
97                         <dependency>
98                                 <groupId>com.att.eelf</groupId>
99                                 <artifactId>eelf-core</artifactId>
100                                 <version>${eelf.core.version}</version>
101                         </dependency>
102
103                         <dependency>
104                                 <groupId>ch.qos.logback</groupId>
105                                 <artifactId>logback-core</artifactId>
106                                 <version>${logback.version}</version>
107                         </dependency>
108
109                         <dependency>
110                                 <groupId>ch.qos.logback</groupId>
111                                 <artifactId>logback-classic</artifactId>
112                                 <version>${logback.version}</version>
113                         </dependency>
114
115                         <dependency>
116                                 <groupId>ch.qos.logback</groupId>
117                                 <artifactId>logback-access</artifactId>
118                                 <version>${logback.version}</version>
119                         </dependency>
120
121                         <dependency>
122                                 <groupId>org.hamcrest</groupId>
123                                 <artifactId>hamcrest-junit</artifactId>
124                                 <version>${hamcrest.junit.version}</version>
125                         </dependency>
126
127                         <dependency>
128                                 <groupId>junit</groupId>
129                                 <artifactId>junit</artifactId>
130                                 <version>${junit.version}</version>
131                         </dependency>
132
133                         <dependency>
134                                 <groupId>com.google.guava</groupId>
135                                 <artifactId>guava</artifactId>
136                                 <version>${google.guava.version}</version>
137                         </dependency>
138
139                         <dependency>
140                                 <groupId>org.janusgraph</groupId>
141                                 <artifactId>janusgraph-core</artifactId>
142                                 <version>${janusgraph.version}</version>
143                         </dependency>
144
145                         <dependency>
146                                 <groupId>org.janusgraph</groupId>
147                                 <artifactId>janusgraph-cassandra</artifactId>
148                                 <version>${janusgraph.version}</version>
149                         </dependency>
150
151                         <dependency>
152                                 <groupId>org.janusgraph</groupId>
153                                 <artifactId>janusgraph-cql</artifactId>
154                                 <version>${janusgraph.version}</version>
155                         </dependency>
156
157                         <dependency>
158                                 <groupId>com.github.jnr</groupId>
159                                 <artifactId>jnr-ffi</artifactId>
160                                 <version>${jnr.ffi.version}</version>
161                         </dependency>
162
163                         <dependency>
164                                 <groupId>org.apache.tinkerpop</groupId>
165                                 <artifactId>tinkergraph-gremlin</artifactId>
166                                 <version>${gremlin.version}</version>
167                         </dependency>
168                         <dependency>
169                                 <groupId>org.apache.tinkerpop</groupId>
170                                 <artifactId>gremlin-core</artifactId>
171                                 <version>${gremlin.version}</version>
172                         </dependency>
173                         <dependency>
174                                 <groupId>org.apache.tinkerpop</groupId>
175                                 <artifactId>gremlin-driver</artifactId>
176                                 <version>${gremlin.version}</version>
177                         </dependency>
178
179                         <dependency>
180                                 <groupId>org.apache.tinkerpop</groupId>
181                                 <artifactId>gremlin-groovy</artifactId>
182                                 <version>${gremlin.version}</version>
183                         </dependency>
184
185                         <dependency>
186                                 <groupId>org.codehaus.groovy</groupId>
187                                 <artifactId>groovy</artifactId>
188                                 <version>${groovy.version}</version>
189                                 <classifier>indy</classifier>
190                         </dependency>
191
192                         <dependency>
193                                 <groupId>org.mockito</groupId>
194                                 <artifactId>mockito-all</artifactId>
195                                 <version>${mockito.all.version}</version>
196                         </dependency>
197
198 <!-- 
199                     <dependency>
200                                 <groupId>org.mockito</groupId>
201                                 <artifactId>mockito-core</artifactId>
202                                 <version>${mockito.core.version}</version>
203                         </dependency>
204 -->
205                         <dependency>
206                                 <groupId>org.powermock</groupId>
207                                 <artifactId>powermock-module-junit4</artifactId>
208                                 <version>${powermock.version}</version>
209                         </dependency>
210
211                         <dependency>
212                                 <groupId>org.powermock</groupId>
213                                 <artifactId>powermock-api-mockito</artifactId>
214                                 <version>${powermock.version}</version>
215                         </dependency>
216                         <dependency>
217                                 <groupId>org.powermock</groupId>
218                                 <artifactId>powermock-module-javaagent</artifactId>
219                                 <version>${powermock.version}</version>
220                         </dependency>
221                         <dependency>
222                                 <groupId>com.beust</groupId>
223                                 <artifactId>jcommander</artifactId>
224                                 <version>${jcommander.version}</version>
225                         </dependency>
226
227                         <dependency>
228                                 <groupId>org.json</groupId>
229                                 <artifactId>json</artifactId>
230                                 <version>${json.version}</version>
231                         </dependency>
232
233                         <dependency>
234                                 <groupId>org.freemarker</groupId>
235                                 <artifactId>freemarker</artifactId>
236                                 <version>${freemarker.version}</version>
237                         </dependency>
238
239                         <dependency>
240                                 <groupId>javax.xml.bind</groupId>
241                                 <artifactId>jaxb-api</artifactId>
242                                 <version>${jaxb.version}</version>
243                         </dependency>
244
245                         <dependency>
246                                 <groupId>org.onap.aaf.authz</groupId>
247                                 <artifactId>aaf-cadi-aaf</artifactId>
248                                 <version>${aaf.version}</version>
249                         </dependency>
250
251                         <dependency>
252                                 <groupId>com.sun.xml.bind</groupId>
253                                 <artifactId>jaxb-xjc</artifactId>
254                                 <version>${jaxb.version}</version>
255                         </dependency>
256
257                         <dependency>
258                                 <groupId>org.eclipse.persistence</groupId>
259                                 <artifactId>eclipselink</artifactId>
260                                 <version>${eclipse.persistence.version}</version>
261                         </dependency>
262
263                         <dependency>
264                                 <groupId>org.eclipse.persistence</groupId>
265                                 <artifactId>org.eclipse.persistence.moxy</artifactId>
266                                 <version>${eclipse.persistence.version}</version>
267                         </dependency>
268
269                         <dependency>
270                                 <groupId>com.github.fge</groupId>
271                                 <artifactId>json-patch</artifactId>
272                                 <version>${json.patch.version}</version>
273                         </dependency>
274
275                         <dependency>
276                                 <groupId>org.javatuples</groupId>
277                                 <artifactId>javatuples</artifactId>
278                                 <version>${javatuples.version}</version>
279                         </dependency>
280
281                         <dependency>
282                                 <groupId>com.google.code.gson</groupId>
283                                 <artifactId>gson</artifactId>
284                                 <version>${gson.version}</version>
285                         </dependency>
286
287                         <dependency>
288                                 <groupId>org.onap.aai.aai-common</groupId>
289                                 <artifactId>aai-schema-ingest</artifactId>
290                                 <version>${project.version}</version>
291                         </dependency>
292
293                         <dependency>
294                                 <groupId>org.apache.commons</groupId>
295                                 <artifactId>commons-text</artifactId>
296                                 <version>${commons.text.version}</version>
297                         </dependency>
298
299                         <dependency>
300                                 <groupId>org.onap.aai.aai-common</groupId>
301                                 <artifactId>aai-annotations</artifactId>
302                                 <version>${project.version}</version>
303                         </dependency>
304
305                         <dependency>
306                                 <groupId>org.codehaus.jackson</groupId>
307                                 <artifactId>jackson-core-asl</artifactId>
308                                 <version>${codehaus.jackson.version}</version>
309                         </dependency>
310
311                         <dependency>
312                                 <groupId>com.sun.jersey</groupId>
313                                 <artifactId>jersey-core</artifactId>
314                                 <version>${jersey.version}</version>
315                         </dependency>
316                         <dependency>
317                                 <groupId>com.sun.jersey</groupId>
318                                 <artifactId>jersey-client</artifactId>
319                                 <version>${jersey.version}</version>
320                         </dependency>
321                         <dependency>
322                                 <groupId>com.sun.jersey</groupId>
323                                 <artifactId>jersey-json</artifactId>
324                                 <version>${jersey.version}</version>
325                         </dependency>
326
327                         <dependency>
328                                 <groupId>javax.ws.rs</groupId>
329                                 <artifactId>javax.ws.rs-api</artifactId>
330                                 <version>${jaxrs.version}</version>
331                         </dependency>
332
333                         <dependency>
334                                 <groupId>commons-cli</groupId>
335                                 <artifactId>commons-cli</artifactId>
336                                 <version>${commons.cli.version}</version>
337                         </dependency>
338
339                         <dependency>
340                                 <groupId>com.bazaarvoice.jolt</groupId>
341                                 <artifactId>jolt-complete</artifactId>
342                                 <version>${jolt.version}</version>
343                         </dependency>
344
345                         <dependency>
346                                 <groupId>com.opencsv</groupId>
347                                 <artifactId>opencsv</artifactId>
348                                 <version>${opencsv.version}</version>
349                         </dependency>
350
351                         <dependency>
352                                 <groupId>log4j</groupId>
353                                 <artifactId>log4j</artifactId>
354                                 <version>${log4j.version}</version>
355                         </dependency>
356
357                         <dependency>
358                                 <groupId>commons-io</groupId>
359                                 <artifactId>commons-io</artifactId>
360                                 <version>${commons.io.version}</version>
361                         </dependency>
362
363                         <dependency>
364                                 <groupId>org.onap.aai.aai-common</groupId>
365                                 <artifactId>aai-rest</artifactId>
366                                 <version>${project.version}</version>
367                         </dependency>
368
369                         <dependency>
370                                 <groupId>org.springframework.security</groupId>
371                                 <artifactId>spring-security-rsa</artifactId>
372                                 <version>${spring.security.rsa.version}</version>
373                         </dependency>
374
375                         <dependency>
376                                 <groupId>org.onap.aai.logging-service</groupId>
377                                 <artifactId>common-logging</artifactId>
378                                 <version>${aai.common.logging.version}</version>
379                         </dependency>
380
381                         <dependency>
382                                 <groupId>org.onap.aai.logging-service</groupId>
383                                 <artifactId>logging-api</artifactId>
384                                 <version>${aai.common.logging.version}</version>
385                         </dependency>
386
387                         <dependency>
388                                 <groupId>org.onap.aai</groupId>
389                                 <artifactId>rest-client</artifactId>
390                                 <version>${aai.rest.client.version}</version>
391                         </dependency>
392
393
394                 </dependencies>
395
396         </dependencyManagement>
397
398         <build>
399                 <pluginManagement>
400                         <plugins>
401                                 <plugin>
402                                         <groupId>org.springframework.boot</groupId>
403                                         <artifactId>spring-boot-maven-plugin</artifactId>
404                                         <version>${spring.boot.version}</version>
405                                 </plugin>
406                                 <plugin>
407                                         <groupId>io.fabric8</groupId>
408                                         <artifactId>docker-maven-plugin</artifactId>
409                                         <version>${docker.fabric.version}</version>
410                                 </plugin>
411                         </plugins>
412
413                 </pluginManagement>
414         </build>
415
416 </project>