Fix the site jenkins job from failing
[aai/aai-common.git] / aai-core / pom.xml
1 <?xml version="1.0"?>
2 <project
3                 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4                 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7           <groupId>org.onap.aai.aai-common</groupId>
8           <artifactId>aai-common</artifactId>
9           <version>1.1.0-SNAPSHOT</version>
10         </parent>
11         <artifactId>aai-core</artifactId>
12         <name>aai-core</name>
13         <packaging>jar</packaging>
14         <properties>
15                 <maven.compiler.target>1.8</maven.compiler.target>
16                 <maven.compiler.source>1.8</maven.compiler.source>
17                 <nexusproxy>https://nexus.onap.org</nexusproxy>
18                 <sitePath>/content/sites/site/org/onap/aai-common/${project.artifactId}/${project.version}</sitePath>
19                 <sonar.language>java</sonar.language>
20                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
21                 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
22                 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
23                 <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
24                 <sonar.projectVersion>${project.version}</sonar.projectVersion>
25         </properties>
26         <dependencies>
27                 <dependency>
28                         <groupId>org.onap.aai.aai-common</groupId>
29                         <artifactId>aai-schema</artifactId>
30                         <version>${aai.schema.version}</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>commons-lang</groupId>
34                         <artifactId>commons-lang</artifactId>
35                         <version>2.6</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>com.att.eelf</groupId>
39                         <artifactId>eelf-core</artifactId>
40                         <version>1.0.0</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>jdk.tools</groupId>
44                         <artifactId>jdk.tools</artifactId>
45                         <version>1.8.0_101</version>
46                         <scope>system</scope>
47                         <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.codehaus.jackson</groupId>
51                         <artifactId>jackson-core-asl</artifactId>
52                         <version>1.9.13</version>
53                 </dependency>
54
55                 <dependency>
56                         <groupId>org.codehaus.jackson</groupId>
57                         <artifactId>jackson-mapper-asl</artifactId>
58                         <version>1.9.13</version>
59                 </dependency>
60                 <dependency>
61                         <groupId>junit</groupId>
62                         <artifactId>junit</artifactId>
63                         <version>4.12</version>
64                         <scope>test</scope>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.hamcrest</groupId>
68                         <artifactId>hamcrest-junit</artifactId>
69                         <version>2.0.0.0</version>
70                         <scope>test</scope>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.hamcrest</groupId>
74                         <artifactId>hamcrest-core</artifactId>
75                         <version>1.3</version>
76                         <scope>test</scope>
77                 </dependency>
78                 <dependency>
79                         <groupId>org.mockito</groupId>
80                         <artifactId>mockito-all</artifactId>
81                         <version>1.10.19</version>
82                         <scope>test</scope>
83                 </dependency>
84                 <dependency>
85                         <groupId>org.powermock</groupId>
86                         <artifactId>powermock-module-junit4</artifactId>
87                         <version>1.6.2</version>
88                         <scope>test</scope>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.powermock</groupId>
92                         <artifactId>powermock-api-mockito</artifactId>
93                         <version>1.6.2</version>
94                         <scope>test</scope>
95                 </dependency>
96                 <dependency>
97                         <groupId>com.google.guava</groupId>
98                         <artifactId>guava</artifactId>
99                         <version>16.0</version>
100                 </dependency>
101                 <dependency>
102                         <groupId>com.thinkaurelius.titan</groupId>
103                         <artifactId>titan-core</artifactId>
104                         <version>1.0.0</version>
105                         <exclusions>
106                                 <exclusion>
107                                         <groupId>org.slf4j</groupId>
108                                         <artifactId>slf4j-log4j12</artifactId>
109                                 </exclusion>
110                         </exclusions>
111                 </dependency>
112                 <dependency>
113                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
114                         <artifactId>jackson-jaxrs-json-provider</artifactId>
115                         <version>2.1.4</version>
116                 </dependency>
117                 <dependency>
118                         <groupId>com.googlecode.json-simple</groupId>
119                         <artifactId>json-simple</artifactId>
120                         <version>1.1.1</version>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.springframework</groupId>
124                         <artifactId>spring-web</artifactId>
125                         <version>4.2.5.RELEASE</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>javax.xml.bind</groupId>
129                         <artifactId>jaxb-api</artifactId>
130                         <version>2.2.11</version>
131                 </dependency>
132                 <dependency>
133                         <groupId>org.eclipse.persistence</groupId>
134                         <artifactId>eclipselink</artifactId>
135                         <version>2.6.2</version>
136                 </dependency>
137                 <dependency>
138                         <groupId>com.google.code.gson</groupId>
139                         <artifactId>gson</artifactId>
140                         <version>2.7</version>
141                 </dependency>
142                 <dependency>
143                         <groupId>org.eclipse.jetty</groupId>
144                         <artifactId>jetty-util</artifactId>
145                         <version>9.4.2.v20170220</version>
146                 </dependency>
147                 <dependency>
148                         <groupId>org.apache.cxf</groupId>
149                         <artifactId>cxf-core</artifactId>
150                         <version>3.0.6</version>
151                 </dependency>
152                 <dependency>
153                         <groupId>com.fasterxml.jackson.module</groupId>
154                         <artifactId>jackson-module-jaxb-annotations</artifactId>
155                         <version>2.1.4</version>
156                 </dependency>
157                 <dependency>
158                         <groupId>com.sun.jersey</groupId>
159                         <artifactId>jersey-core</artifactId>
160                         <version>1.18</version>
161                 </dependency>
162                 <dependency>
163                         <groupId>com.sun.jersey</groupId>
164                         <artifactId>jersey-client</artifactId>
165                         <version>1.18</version>
166                 </dependency>
167                 <dependency>
168                         <groupId>javax.ws.rs</groupId>
169                         <artifactId>javax.ws.rs-api</artifactId>
170                         <version>2.0.1</version>
171                 </dependency>
172                 <dependency>
173                         <groupId>org.apache.tinkerpop</groupId>
174                         <artifactId>gremlin-core</artifactId>
175                         <version>3.0.1-incubating</version>
176                 </dependency>
177                 <dependency>
178                         <groupId>org.slf4j</groupId>
179                         <artifactId>slf4j-api</artifactId>
180                         <version>1.7.5</version>
181                 </dependency>
182                 <dependency>
183                         <groupId>com.fasterxml.jackson.core</groupId>
184                         <artifactId>jackson-databind</artifactId>
185                         <version>2.1.4</version>
186                 </dependency>
187                 <dependency>
188                         <groupId>com.fasterxml.jackson.core</groupId>
189                         <artifactId>jackson-annotations</artifactId>
190                         <version>2.1.4</version>
191                 </dependency>
192                 <dependency>
193                         <groupId>xml-apis</groupId>
194                         <artifactId>xml-apis</artifactId>
195                         <version>1.0.b2</version>
196                 </dependency>
197                 <dependency>
198                         <groupId>commons-lang</groupId>
199                         <artifactId>commons-lang</artifactId>
200                         <version>2.6</version>
201                 </dependency>
202                 <dependency>
203                         <groupId>commons-cli</groupId>
204                         <artifactId>commons-cli</artifactId>
205                         <version>1.3</version>
206                 </dependency>
207                 <dependency>
208                         <groupId>com.beust</groupId>
209                         <artifactId>jcommander</artifactId>
210                         <version>1.48</version>
211                 </dependency>
212                 <dependency>
213                         <groupId>org.json</groupId>
214                         <artifactId>json</artifactId>
215                         <version>20160810</version>
216                 </dependency>
217                 <dependency>
218                         <groupId>javax.servlet</groupId>
219                         <artifactId>javax.servlet-api</artifactId>
220                         <version>3.1.0</version>
221                 </dependency>
222                 <dependency>
223                         <groupId>com.bazaarvoice.jolt</groupId>
224                         <artifactId>jolt-complete</artifactId>
225                         <version>0.0.24</version>
226                 </dependency>
227                 <dependency>
228                         <groupId>ch.qos.logback</groupId>
229                         <artifactId>logback-core</artifactId>
230                         <version>1.1.7</version>
231                 </dependency>
232                 <dependency>
233                         <groupId>ch.qos.logback</groupId>
234                         <artifactId>logback-classic</artifactId>
235                         <version>1.1.7</version>
236                 </dependency>
237                 <dependency>
238                         <groupId>ch.qos.logback</groupId>
239                         <artifactId>logback-access</artifactId>
240                         <version>1.1.7</version>
241                 </dependency>
242                 <dependency>
243                         <groupId>org.apache.hbase</groupId>
244                         <artifactId>hbase-client</artifactId>
245                         <version>0.98.4-hadoop2</version>
246                         <exclusions>
247                                 <exclusion>
248                                         <groupId>org.slf4j</groupId>
249                                         <artifactId>slf4j-log4j12</artifactId>
250                                 </exclusion>
251                                 <exclusion>
252                                         <artifactId>log4j</artifactId>
253                                         <groupId>log4j</groupId>
254                                 </exclusion>
255                         </exclusions>
256                 </dependency>
257                 <dependency>
258                         <groupId>org.apache.hbase</groupId>
259                         <artifactId>hbase-protocol</artifactId>
260                         <version>0.98.4-hadoop2</version>
261                         <exclusions>
262                                 <exclusion>
263                                         <artifactId>log4j</artifactId>
264                                         <groupId>log4j</groupId>
265                                 </exclusion>
266                         </exclusions>
267                 </dependency>
268                 <dependency>
269                         <groupId>org.apache.hbase</groupId>
270                         <artifactId>hbase-common</artifactId>
271                         <version>0.98.4-hadoop2</version>
272                         <exclusions>
273                                 <exclusion>
274                                         <artifactId>log4j</artifactId>
275                                         <groupId>log4j</groupId>
276                                 </exclusion>
277                         </exclusions>
278                 </dependency>
279                 <dependency>
280                         <groupId>org.apache.activemq</groupId>
281                         <artifactId>activemq-broker</artifactId>
282                         <version>5.14.4</version>
283                 </dependency>
284
285                 <dependency>
286                         <groupId>com.opencsv</groupId>
287                         <artifactId>opencsv</artifactId>
288                         <version>3.1</version>
289                 </dependency>
290                 <dependency>
291                         <groupId>org.freemarker</groupId>
292                         <artifactId>freemarker</artifactId>
293                         <version>2.3.14</version>
294                 </dependency>
295                 <dependency>
296                         <groupId>com.bazaarvoice.jolt</groupId>
297                         <artifactId>jolt-complete</artifactId>
298                         <version>0.0.24</version>
299                 </dependency>
300                 <dependency>
301                         <groupId>org.mockito</groupId>
302                         <artifactId>mockito-all</artifactId>
303                         <version>1.10.19</version>
304                         <scope>test</scope>
305                 </dependency>
306                 <dependency>
307                         <groupId>org.powermock</groupId>
308                         <artifactId>powermock-module-junit4</artifactId>
309                         <version>1.6.2</version>
310                         <scope>test</scope>
311                 </dependency>
312                 <dependency>
313                         <groupId>org.powermock</groupId>
314                         <artifactId>powermock-api-mockito</artifactId>
315                         <version>1.6.2</version>
316                         <scope>test</scope>
317                 </dependency>
318                 <dependency>
319                         <groupId>org.powermock</groupId>
320                         <artifactId>powermock-module-javaagent</artifactId>
321                         <version>1.6.2</version>
322                         <scope>test</scope>
323                 </dependency>
324         </dependencies>
325         
326         <build>
327                 <plugins>
328                         <plugin>
329                                 <groupId>org.codehaus.mojo</groupId>
330                                 <artifactId>sonar-maven-plugin</artifactId>
331                                 <version>3.2</version>
332                         </plugin>
333                         <plugin>
334                                 <groupId>org.jacoco</groupId>
335                                 <artifactId>jacoco-maven-plugin</artifactId>
336                                 <version>0.7.7.201606060606</version>
337                                 <configuration>
338                                         <dumpOnExit>true</dumpOnExit>
339                                 </configuration>
340                                 <executions>
341                                         <execution>
342                                                 <id>jacoco-initialize-unit-tests</id>
343                                                 <goals>
344                                                         <goal>prepare-agent</goal>
345                                                 </goals>
346                                                 <configuration>
347                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
348                                                         <!-- <append>true</append> -->
349                                                 </configuration>
350                                         </execution>
351                                 </executions>
352                         </plugin>
353                         <plugin>
354                           <groupId>org.apache.maven.plugins</groupId>
355                           <artifactId>maven-site-plugin</artifactId>
356                           <version>3.6</version>
357                           <dependencies>
358                             <dependency>
359                               <groupId>org.apache.maven.wagon</groupId>
360                               <artifactId>wagon-webdav-jackrabbit</artifactId>
361                               <version>2.10</version>
362                             </dependency>
363                           </dependencies>
364                         </plugin>
365                         <plugin>
366                                         <groupId>org.codehaus.mojo</groupId>
367                                         <artifactId>license-maven-plugin</artifactId>
368                                         <version>1.12</version>
369                                         <configuration>
370                                                 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
371                                                 <licenseName>apache_v2</licenseName>
372                                                 <inceptionYear>2017</inceptionYear>
373                                                 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
374                                                 <projectName>org.openecomp.aai</projectName>
375                                                 <canUpdateCopyright>true</canUpdateCopyright>
376                                                 <canUpdateDescription>true</canUpdateDescription>
377                                                 <canUpdateLicense>true</canUpdateLicense>
378                                                 <emptyLineAfterHeader>true</emptyLineAfterHeader>
379                                                 <processStartTag>============LICENSE_START=======================================================</processStartTag>
380                                                 <processEndTag>============LICENSE_END=========================================================</processEndTag>
381                                                 <sectionDelimiter>================================================================================</sectionDelimiter>
382                                                 <includes>
383                                                         <include>**/*.java</include>
384                                                         <include>**/*.ksh</include>
385                                                         <include>**/*.sh</include>
386                                                         <include>**/*.ftl</include>
387                                                         <include>**/*.xsd</include>
388                                                         <include>**/*.xjb</include>
389                                                         <include>**/aai*.xml</include>
390                                                         <include>**/*logback*.xml</include>
391                                                         <include>**/*aaiconfig*.properties</include>
392                                                         <include>**/*titan*.properties</include>
393                                                 </includes>
394                                         </configuration>
395                                         <executions>
396                                                 <execution>
397                                                         <id>first</id>
398                                                         <goals>
399                                                                 <goal>update-file-header</goal>
400                                                         </goals>
401                                                         <phase>process-sources</phase>
402                                                 </execution>
403                                         </executions>
404                                 </plugin>
405                         <plugin>
406                 <groupId>org.apache.maven.plugins</groupId>
407                                 <artifactId>maven-surefire-plugin</artifactId>
408                                 <version>2.12.4</version>
409                                 <configuration>
410                                         <argLine>-noverify ${argLine}</argLine>
411                     <systemPropertyVariables>
412                                                 <AJSC_HOME>.</AJSC_HOME>
413                                                 <BUNDLECONFIG_DIR>bundleconfig-local</BUNDLECONFIG_DIR>
414                                         </systemPropertyVariables>
415                                 </configuration>
416                         </plugin>
417                 </plugins>
418         </build>
419         
420         <distributionManagement>
421                 <repository>
422                         <id>ecomp-releases</id>
423                         <name>ECOMP Release Repository</name>
424                         <url>${nexusproxy}/content/repositories/releases/</url>
425                 </repository>
426                 <snapshotRepository>
427                         <id>ecomp-snapshots</id>
428                         <name>ECOMP Snapshot Repository</name>
429                         <url>${nexusproxy}/content/repositories/snapshots/</url>
430                 </snapshotRepository>
431                 <site>
432                         <id>ecomp-site</id>
433                         <url>dav:${nexusproxy}${sitePath}</url>
434                 </site>
435         </distributionManagement>
436
437         <!-- Plugins and repositories -->
438         <pluginRepositories>
439                 <pluginRepository>
440                         <id>central</id>
441                         <url>http://repo1.maven.org/maven2</url>
442                 </pluginRepository>
443                 <pluginRepository>
444                         <id>EvoSuite</id>
445                         <name>EvoSuite Repository</name>
446                         <url>http://www.evosuite.org/m2</url>
447                 </pluginRepository>
448         </pluginRepositories>
449         
450         <repositories>
451                 <repository>
452                         <id>AJSC</id>
453                         <name>AJSC repository</name>
454                         <url>https://mvnrepository.com/artifact/com.att.ajsc</url>
455                 </repository>
456                 <repository>
457                         <id>restlet</id>
458                         <name>maven reslet</name>
459                         <url>https://maven.restlet.com/</url>
460                 </repository>
461                 
462                 <repository>
463                         <id>central</id>
464                         <name>Maven 2 repository 2</name>
465                         <url>http://repo2.maven.org/maven2/</url>
466                 </repository>
467                 <repository>
468                         <id>ecomp-releases</id>
469                         <name>ECOMP Release Repository</name>
470                         <url>${nexusproxy}/content/repositories/releases/</url>
471                 </repository>
472                 <repository>
473                         <id>ecomp-staging</id>
474                         <name>ECOMP Staging Repository</name>
475                         <url>${nexusproxy}/content/repositories/staging/</url>
476                 </repository>
477                 <repository>
478                         <id>ecomp-snapshots</id>
479                         <name>ECOMP Snapshot Repository</name>
480                         <url>${nexusproxy}/content/repositories/snapshots/</url>
481                 </repository>
482         </repositories>
483
484         <reporting>
485           <plugins>
486             <plugin>
487               <groupId>org.apache.maven.plugins</groupId>
488               <artifactId>maven-javadoc-plugin</artifactId>
489               <version>2.10.4</version>
490               <configuration>
491                 <failOnError>false</failOnError>
492                 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
493                 <docletArtifact>
494                   <groupId>org.umlgraph</groupId>
495                   <artifactId>umlgraph</artifactId>
496                   <version>5.6</version>
497                 </docletArtifact>
498                 <additionalparam>-views</additionalparam>
499                 <useStandardDocletOptions>true</useStandardDocletOptions>
500               </configuration>
501             </plugin>
502           </plugins>
503         </reporting>
504 </project>