turned tests back on
[aai/aai-service.git] / ajsc-aai / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.openecomp.aai.aai-service</groupId>
7     <artifactId>aai-service</artifactId>
8     <version>1.0.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>ajsc-aai</artifactId>
11   <name>ajsc</name>
12   <url>http://maven.apache.org</url>
13   <properties>
14                 <dockerLocation>${basedir}/target/swm/package/nix/dist_files/</dockerLocation>
15                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 
17   </properties>
18   <dependencies>
19                 <!-- AJSC related dependencies -->
20                 <dependency>
21                         <groupId>com.att.ajsc</groupId>
22                         <artifactId>ajsc-runner</artifactId>
23                         <version>${ajscRuntimeVersion}</version>
24                 </dependency>
25                 <dependency>
26                         <groupId>com.att.ajsc</groupId>
27                         <artifactId>ajsc-core</artifactId>
28                         <version>${ajscRuntimeVersion}</version>
29                         <scope>provided</scope>
30                 </dependency>
31                 
32                 <dependency>
33                         <groupId>dom4j</groupId>
34                         <artifactId>dom4j</artifactId>
35                         <version>1.6.1</version>
36                 </dependency>
37
38                 <dependency>
39                         <groupId>commons-lang</groupId>
40                         <artifactId>commons-lang</artifactId>
41                         <version>2.6</version>
42                 </dependency>
43
44                 <dependency> 
45                         <groupId>com.att.eelf</groupId> 
46                         <artifactId>eelf-core</artifactId> 
47                         <version>0.0.1</version> 
48                 </dependency> 
49  
50                 <dependency> 
51                         <groupId>com.att.eelf</groupId> 
52                         <artifactId>eelf-maven-plugin</artifactId> 
53                         <version>0.0.1</version> 
54                 </dependency>
55
56                 <dependency>
57                         <groupId>ch.qos.logback</groupId>
58                         <artifactId>logback-core</artifactId>
59                         <version>1.1.7</version>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>ch.qos.logback</groupId>
64                         <artifactId>logback-classic</artifactId>
65                         <version>1.1.7</version>
66                 </dependency>
67
68                 <dependency>
69                         <groupId>ch.qos.logback</groupId>
70                         <artifactId>logback-access</artifactId>
71                         <version>1.1.7</version>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>org.codehaus.janino</groupId>
76                         <artifactId>janino</artifactId>
77                         <version>2.7.8</version>
78                 </dependency>
79
80                 <dependency>
81                         <groupId>commons-io</groupId>
82                         <artifactId>commons-io</artifactId>
83                 </dependency>
84                 <dependency>
85                         <groupId>commons-collections</groupId>
86                         <artifactId>commons-collections</artifactId>
87                 </dependency>
88                 <dependency>
89                         <groupId>jdk.tools</groupId>
90                         <artifactId>jdk.tools</artifactId>
91                         <version>1.8.0</version>
92                         <scope>system</scope>
93                         <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
94                 </dependency>
95                 <dependency>
96                         <groupId>junit</groupId>
97                         <artifactId>junit</artifactId>
98                         <scope>test</scope>
99                 </dependency>
100                 <dependency>
101                         <groupId>com.google.guava</groupId>
102                         <artifactId>guava</artifactId>
103                         <version>16.0</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>com.thinkaurelius.titan</groupId>
107                         <artifactId>titan-core</artifactId>
108                         <version>1.0.0</version>
109                         <exclusions>
110                                 <exclusion>
111                                         <groupId>org.slf4j</groupId>
112                                         <artifactId>slf4j-log4j12</artifactId>
113                                 </exclusion>
114                         </exclusions>
115                 </dependency>
116                 <dependency>
117                         <groupId>com.thinkaurelius.titan</groupId>
118                         <artifactId>titan-hbase</artifactId>
119                         <version>1.0.0</version>
120                         <exclusions>
121                                 <exclusion>
122                                         <groupId>org.slf4j</groupId>
123                                         <artifactId>slf4j-log4j12</artifactId>
124                                 </exclusion>
125                         </exclusions>
126                 </dependency>
127                 <dependency>
128                         <groupId>org.apache.tinkerpop</groupId>
129                         <artifactId>tinkerpop</artifactId>
130                         <version>3.1.0-incubating</version>
131                         <type>pom</type>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.apache.hbase</groupId>
135                         <artifactId>hbase-client</artifactId>
136                         <version>1.0.2</version>
137                         <exclusions>
138                                 <exclusion>
139                                         <groupId>org.slf4j</groupId>
140                                         <artifactId>slf4j-log4j12</artifactId>
141                                 </exclusion>
142                                 <exclusion>
143                                         <artifactId>log4j</artifactId>
144                                         <groupId>log4j</groupId>
145                                 </exclusion>
146                         </exclusions>
147                 </dependency>
148                 <dependency>
149                         <groupId>org.apache.hbase</groupId>
150                         <artifactId>hbase-protocol</artifactId>
151                         <version>1.0.2</version>
152                         <exclusions>
153                                 <exclusion>
154                                         <artifactId>log4j</artifactId>
155                                         <groupId>log4j</groupId>
156                                 </exclusion>
157                         </exclusions>
158                 </dependency>
159                 <dependency>
160                         <groupId>org.apache.hbase</groupId>
161                         <artifactId>hbase-common</artifactId>
162                         <version>1.0.2</version>
163                         <exclusions>
164                                 <exclusion>
165                                         <artifactId>log4j</artifactId>
166                                         <groupId>log4j</groupId>
167                                 </exclusion>
168                         </exclusions>
169                 </dependency>
170                 <dependency>
171                         <groupId>com.google.inject.extensions</groupId>
172                         <artifactId>guice-servlet</artifactId>
173                         <version>3.0</version>
174                 </dependency>
175                 <dependency>
176                         <groupId>com.google.inject</groupId>
177                         <artifactId>guice</artifactId>
178                         <version>3.0</version>
179                 </dependency>
180
181                 <dependency>
182                         <groupId>com.sun.jersey</groupId>
183                         <artifactId>jersey-json</artifactId>
184                         <version>1.18</version>
185                 </dependency>
186                 <dependency>
187                         <groupId>jivesoftware</groupId>
188                         <artifactId>smack</artifactId>
189                         <version>3.0.4</version>
190                 </dependency>
191
192                 <dependency>
193                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
194                         <artifactId>jackson-jaxrs-json-provider</artifactId>
195                         <version>2.1.4</version>
196                 </dependency>
197                 <dependency>
198                         <groupId>com.googlecode.json-simple</groupId>
199                         <artifactId>json-simple</artifactId>
200                         <version>1.1.1</version>
201                 </dependency>
202                 <dependency>
203                         <groupId>com.sun.jersey</groupId>
204                         <artifactId>jersey-client</artifactId>
205                         <version>1.18</version>
206                 </dependency>
207                 <dependency>
208                         <groupId>org.springframework</groupId>
209                         <artifactId>spring-web</artifactId>
210                         <version>4.2.5.RELEASE</version>
211                 </dependency>
212                 <dependency>
213                         <groupId>org.springframework.ws</groupId>
214                         <artifactId>spring-ws</artifactId>
215                         <version>1.5.2</version>
216                         <!--<version>2.1.3-RELEASE</version> -->
217                 </dependency>
218                 <dependency>
219                         <groupId>org.springframework</groupId>
220                         <artifactId>spring-core</artifactId>
221                         <version>4.2.5.RELEASE</version>
222                 </dependency>
223                 <dependency>
224                         <groupId>org.mockito</groupId>
225                         <artifactId>mockito-all</artifactId>
226                         <version>1.10.19</version>
227                         <scope>test</scope>
228                 </dependency>
229
230                 <dependency>
231                         <groupId>org.powermock</groupId>
232                         <artifactId>powermock-module-junit4</artifactId>
233                         <version>1.6.2</version>
234                         <scope>test</scope>
235                 </dependency>
236                 <dependency>
237                         <groupId>org.powermock</groupId>
238                         <artifactId>powermock-api-mockito</artifactId>
239                         <version>1.6.2</version>
240                         <scope>test</scope>
241                 </dependency>
242                 <dependency>
243                         <groupId>com.beust</groupId>
244                         <artifactId>jcommander</artifactId>
245                         <version>1.48</version>
246                 </dependency>
247                 <dependency>
248                         <groupId>org.json</groupId>
249                         <artifactId>json</artifactId>
250                         <version>20090211</version>
251                 </dependency>
252                 <dependency>
253                         <groupId>org.freemarker</groupId>
254                         <artifactId>freemarker</artifactId>
255                         <version>2.3.14</version>
256                 </dependency>
257                 <dependency>
258                         <groupId>javax.xml.bind</groupId>
259                         <artifactId>jaxb-api</artifactId>
260                         <version>2.2.11</version>
261                 </dependency>
262                 <dependency>
263                         <groupId>com.sun.xml.bind</groupId>
264                         <artifactId>jaxb-impl</artifactId>
265                         <version>2.2.11</version>
266                 </dependency>
267                 <dependency>
268                         <groupId>com.sun.xml.bind</groupId>
269                         <artifactId>jaxb-core</artifactId>
270                         <version>2.2.11</version>
271                 </dependency>
272                 <dependency>
273                         <groupId>com.sun.xml.bind</groupId>
274                         <artifactId>jaxb-xjc</artifactId>
275                         <version>2.2.11</version>
276                 </dependency>
277                 <dependency>
278                         <groupId>org.eclipse.persistence</groupId>
279                         <artifactId>eclipselink</artifactId>
280                         <version>2.6.2</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>org.eclipse.persistence</groupId>
284                         <artifactId>org.eclipse.persistence.moxy</artifactId>
285                         <version>2.6.2</version>
286                         <scope>compile</scope>
287                 </dependency>
288                 <dependency>
289                         <groupId>org.powermock</groupId>
290                         <artifactId>powermock-module-javaagent</artifactId>
291                         <version>1.6.2</version>
292                         <scope>test</scope>
293                 </dependency>
294                 <dependency>
295                         <groupId>org.powermock</groupId>
296                         <artifactId>powermock-module-junit4-rule-agent</artifactId>
297                         <version>1.6.2</version>
298                         <scope>test</scope>
299                 </dependency>
300                 <dependency>
301                         <groupId>com.github.fge</groupId>
302                         <artifactId>json-patch</artifactId>
303                         <version>1.9</version>
304                 </dependency>
305                 <dependency>
306                         <groupId>org.javatuples</groupId>
307                         <artifactId>javatuples</artifactId>
308                         <version>1.2</version>
309                         <scope>compile</scope>
310                 </dependency>
311                 <dependency>
312                         <groupId>com.google.code.gson</groupId>
313                         <artifactId>gson</artifactId>
314                         <version>2.7</version>
315                 </dependency>
316                 <dependency>
317                         <groupId>com.att.nsa</groupId>
318                         <artifactId>dmaapClient</artifactId>
319                         <version>0.2.12</version>
320                 </dependency>
321                 <dependency>
322                         <groupId>org.apache.httpcomponents</groupId>
323                         <artifactId>httpcore</artifactId>
324                         <version>4.4</version>
325                 </dependency>
326                 <dependency>
327                         <groupId>org.apache.activemq</groupId>
328                         <artifactId>activemq-broker</artifactId>
329                         <version>5.12.2</version>
330                 </dependency>   
331
332         <dependency>
333                 <groupId>org.openecomp.aai.aai-service</groupId>
334                 <artifactId>annotations</artifactId>
335                 <version>1.0.0-SNAPSHOT</version>
336         </dependency>
337   </dependencies>
338   <build>
339                 
340                 <plugins>
341                  <plugin>
342                 <groupId>org.apache.maven.plugins</groupId>
343                 <artifactId>maven-resources-plugin</artifactId>
344                 <version>2.7</version>
345                 <executions>
346                     <execution>
347                         <id>copy-docker-file</id>
348                         <phase>package</phase>
349                         <goals>
350                             <goal>copy-resources</goal>
351                         </goals>
352                         <configuration>
353                             <outputDirectory>${dockerLocation}</outputDirectory>
354                             <overwrite>true</overwrite>
355                             <resources>
356                                 <resource>
357                                     <directory>${basedir}/src/main/resources/docker</directory>
358                                     <filtering>true</filtering>
359                                     <includes>
360                                         <include>**/*</include>
361                                     </includes>
362                                 </resource>
363                             </resources>
364                         </configuration>
365                     </execution>
366                     <execution>
367                         <id>copy-commonlibs-file</id>
368                         <phase>package</phase>
369                         <goals>
370                             <goal>copy-resources</goal>
371                         </goals>
372                         <configuration>
373                             <outputDirectory>${dockerLocation}/commonLibs</outputDirectory>
374                             <overwrite>true</overwrite>
375                             <resources>
376                                 <resource>
377                                     <directory>${basedir}/target/commonLibs</directory>
378                                     <filtering>false</filtering>
379                                     <includes>
380                                         <include>*.jar</include>
381                                     </includes>
382                                 </resource>
383                             </resources>
384                         </configuration>
385                     </execution>
386                 </executions>
387             </plugin>
388             <plugin>
389                 <groupId>com.spotify</groupId>
390                 <artifactId>docker-maven-plugin</artifactId>
391                 <version>0.4.11</version>
392                 <configuration>
393                         <verbose>true</verbose>
394                                         
395                     <imageName>${docker.push.registry}/${project.artifactId}</imageName>
396                     <dockerDirectory>${dockerLocation}</dockerDirectory>
397                     <serverId>docker-hub</serverId>                   
398                     <imageTags>
399                         <imageTag>${docker_imageversion}</imageTag>
400                         <imageTag>latest</imageTag>
401                     </imageTags>
402                     <forceTags>true</forceTags>
403                 </configuration>
404             </plugin>
405                 <plugin>
406                         <groupId>org.jvnet.jaxb2.maven2</groupId>
407                                 <artifactId>maven-jaxb2-plugin</artifactId>
408                                 <version>0.13.1</version>
409                                 <executions>
410                                         <execution>
411                                                 <id>gen-xjc</id>
412                                                 <goals>
413                                                         <goal>generate</goal>
414                                                 </goals>
415                                         </execution>
416                                 </executions>
417                                 <configuration>
418                                         <extension>true</extension>
419                                         <args>
420                                                 <arg>-Xannotate</arg>
421                                         </args>
422                                         <generateDirectory>target/generated-sources</generateDirectory>
423                                         <schemaDirectory>src/main/aai_schema</schemaDirectory>
424                                         <bindingDirectory>src/main/xjb</bindingDirectory>
425                                         <plugins>
426                                                 <plugin>
427                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
428                                                         <artifactId>jaxb2-basics-annotate</artifactId>
429                                                         <version>1.0.2</version>
430                                                 </plugin>
431                                                 <plugin>
432                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
433                                                         <artifactId>jaxb2-basics</artifactId>
434                                                         <version>1.11.1</version>
435                                                 </plugin>
436                                                 <plugin>
437                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
438                                                         <artifactId>jaxb2-basics-runtime</artifactId>
439                                                         <version>1.11.1</version>
440                                                 </plugin>
441                                                 <plugin>
442                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
443                                                         <artifactId>jaxb2-basics-tools</artifactId>
444                                                         <version>1.11.1</version>
445                                                 </plugin>
446                                                 <plugin>
447                                                         <groupId>org.openecomp.aai.aai-service</groupId>
448                                                         <artifactId>annotations</artifactId>
449                                                         <version>${project.release}</version>
450                                                 </plugin>
451                                         </plugins>
452                                 </configuration>
453                         </plugin>
454                         <plugin>
455                                 <groupId>org.jsonschema2pojo</groupId>
456                                 <artifactId>jsonschema2pojo-maven-plugin</artifactId>
457                                 <version>0.4.13</version>
458                                 <configuration>
459                                         <sourceType>jsonschema</sourceType>
460                                         <sourceDirectory>src/main/resources/json</sourceDirectory>
461                                         <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
462                                         <annotationStyle>jackson2</annotationStyle>
463                                         <generateBuilders>true</generateBuilders>
464                                 </configuration>
465                         </plugin>
466                         <plugin>
467                                 <groupId>org.apache.maven.plugins</groupId>
468                                 <artifactId>maven-jar-plugin</artifactId>
469                                 <version>2.4</version>
470                                 <executions>
471                                         <execution>
472                                                 <id>aai-custom-jar</id>
473                                                 <phase>prepare-package</phase>
474                                                 <goals>
475                                                         <goal>jar</goal>
476                                                 </goals>
477                                                 <configuration>
478                                                         <includes>
479                                                                 <include>org/openecomp/aai/util/**/*</include>
480                                                         </includes>
481                                                         <finalName>aai-custom</finalName>
482                                                 </configuration>
483                                         </execution>
484                                         <execution>
485                                                 <id>aai-logging-jar</id>
486                                                 <phase>prepare-package</phase>
487                                                 <goals>
488                                                         <goal>jar</goal>
489                                                 </goals>
490                                                 <configuration>
491                                                         <includes>
492                                                                 <include>org/openecomp/aai/logging/**/*</include>
493                                                         </includes>
494                                                         <finalName>aai-logging</finalName>
495                                                 </configuration>
496                                         </execution>
497                                 </executions>
498                         </plugin>
499                         <plugin>
500                                 <groupId>org.apache.maven.plugins</groupId>
501                                 <artifactId>maven-dependency-plugin</artifactId>
502                                 <version>2.5.1</version>
503                                 <executions>
504                                         <execution>
505                                                 <id>copy-agent</id>
506                                                 <phase>process-test-classes</phase>
507                                                 <goals>
508                                                         <goal>copy</goal>
509                                                 </goals>
510                                                 <configuration>
511                                                         <artifactItems>
512                                                                 <artifactItem>
513                                                                         <groupId>org.powermock</groupId>
514                                                                         <artifactId>powermock-module-javaagent</artifactId>
515                                                                         <version>1.6.2</version>
516                                                                         <outputDirectory>${project.build.directory}/agents</outputDirectory>
517                                                                         <destFileName>powermock-javaagent.jar</destFileName>
518                                                                 </artifactItem>
519                                                         </artifactItems>
520                                                 </configuration>
521                                         </execution>
522                                 </executions>
523                         </plugin>
524                         <plugin>
525                             <groupId>org.apache.maven.plugins</groupId>
526                             <artifactId>maven-dependency-plugin</artifactId>
527                             <executions>
528                               <execution>
529                                 <id>unpack-schema-dependency</id>
530                                 <phase>initialize</phase>
531                                 <goals>
532                                   <goal>unpack</goal>
533                                 </goals>
534                               </execution>
535                             </executions>
536                             <configuration>
537                               <artifactItems>
538                                 <artifactItem>
539                                   <groupId>org.openecomp.aai.aai-service</groupId>
540                                   <artifactId>aai-schema</artifactId>
541                                   <version>1.0.0-SNAPSHOT</version>
542                                   <outputDirectory>bundleconfig-local/etc</outputDirectory>
543                                   <includes>oxm/*.xml</includes>
544                                 </artifactItem>
545                                 <artifactItem>
546                                   <groupId>org.openecomp.aai.aai-service</groupId>
547                                   <artifactId>aai-schema</artifactId>
548                                   <version>1.0.0-SNAPSHOT</version>
549                                   <outputDirectory>src/main</outputDirectory>
550                                   <includes>aai_schema/*.xsd</includes>
551                                 </artifactItem>
552                               </artifactItems>
553                               <!-- other configurations here -->
554                             </configuration>
555                           </plugin>
556                         <plugin>
557                                 <groupId>org.apache.maven.plugins</groupId>
558                                 <artifactId>maven-surefire-plugin</artifactId>
559                                 <version>2.12.4</version>
560                                 <configuration>
561                                         <reuseForks>false</reuseForks>
562                                         <threadCount>1</threadCount> 
563                                         <argLine>-javaagent:${project.build.directory}/agents/powermock-javaagent.jar
564                                         -noverify</argLine>
565                                         <systemPropertyVariables>
566                                                 <AJSC_HOME>.</AJSC_HOME>
567                                                 <BUNDLECONFIG_DIR>bundleconfig-local</BUNDLECONFIG_DIR>
568                                         </systemPropertyVariables>
569                                 </configuration>
570                         </plugin>
571                         <plugin>
572                         <groupId>org.apache.maven.plugins</groupId>
573                         <artifactId>maven-deploy-plugin</artifactId>
574                         <executions>
575                                 <execution>
576                                 <id>default-deploy</id>
577                                 <phase>none</phase>
578                                 </execution>
579                                 </executions>
580                         </plugin> 
581                         </plugins>
582         </build>
583                 <profiles>
584                 <!-- Use this profile to run the AJSC locally. This profile can be successfully 
585                         shutdown WITHIN eclipse even in a Windows environment. Debugging is also 
586                         available with this profile. -->
587                 <profile>
588                         <id>passwordGenerator</id>
589                         <build>
590                                 <defaultGoal>initialize</defaultGoal>
591                                 <plugins>
592                                         <plugin>
593                                                 <groupId>org.codehaus.mojo</groupId>
594                                                 <artifactId>exec-maven-plugin</artifactId>
595                                                 <version>1.3.2</version>
596                                                 <executions>
597                                                         <execution>
598                                                                 <phase>initialize</phase>
599                                                                 <goals>
600                                                                         <goal>java</goal>
601                                                                 </goals>
602                                                                 <configuration>
603                                                                         <mainClass>org.eclipse.jetty.util.security.Password</mainClass>
604                                                                         <arguments>
605                                                                                 <argument>user</argument>
606                                                                                 <argument>changeit</argument>
607                                                                         </arguments>
608                                                                 </configuration>
609                                                         </execution>
610                                                 </executions>
611                                                 <configuration>
612                                                         <executable>java</executable>
613                                                 </configuration>
614                                         </plugin>                                       
615                                 </plugins>
616                         </build>
617                 </profile>
618
619         </profiles>
620 </project>