added reference to Java1.8 jdk.tools
[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
89                 <dependency>
90                         <groupId>jdk.tools</groupId>
91                         <artifactId>jdk.tools</artifactId>
92                         <version>1.8.0</version>
93                         <scope>system</scope>
94                         <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
95                 </dependency>
96                 <dependency>
97                         <groupId>junit</groupId>
98                         <artifactId>junit</artifactId>
99                         <scope>test</scope>
100                 </dependency>
101                 <dependency>
102                         <groupId>com.google.guava</groupId>
103                         <artifactId>guava</artifactId>
104                         <version>16.0</version>
105                 </dependency>
106                 <dependency>
107                         <groupId>com.thinkaurelius.titan</groupId>
108                         <artifactId>titan-core</artifactId>
109                         <version>1.0.0</version>
110                         <exclusions>
111                                 <exclusion>
112                                         <groupId>org.slf4j</groupId>
113                                         <artifactId>slf4j-log4j12</artifactId>
114                                 </exclusion>
115                         </exclusions>
116                 </dependency>
117                 <dependency>
118                         <groupId>com.thinkaurelius.titan</groupId>
119                         <artifactId>titan-hbase</artifactId>
120                         <version>1.0.0</version>
121                         <exclusions>
122                                 <exclusion>
123                                         <groupId>org.slf4j</groupId>
124                                         <artifactId>slf4j-log4j12</artifactId>
125                                 </exclusion>
126                         </exclusions>
127                 </dependency>
128                 <dependency>
129                         <groupId>org.apache.tinkerpop</groupId>
130                         <artifactId>tinkerpop</artifactId>
131                         <version>3.1.0-incubating</version>
132                         <type>pom</type>
133                 </dependency>
134                 <dependency>
135                         <groupId>org.apache.hbase</groupId>
136                         <artifactId>hbase-client</artifactId>
137                         <version>1.0.2</version>
138                         <exclusions>
139                                 <exclusion>
140                                         <groupId>org.slf4j</groupId>
141                                         <artifactId>slf4j-log4j12</artifactId>
142                                 </exclusion>
143                                 <exclusion>
144                                         <artifactId>log4j</artifactId>
145                                         <groupId>log4j</groupId>
146                                 </exclusion>
147                         </exclusions>
148                 </dependency>
149                 <dependency>
150                         <groupId>org.apache.hbase</groupId>
151                         <artifactId>hbase-protocol</artifactId>
152                         <version>1.0.2</version>
153                         <exclusions>
154                                 <exclusion>
155                                         <artifactId>log4j</artifactId>
156                                         <groupId>log4j</groupId>
157                                 </exclusion>
158                         </exclusions>
159                 </dependency>
160                 <dependency>
161                         <groupId>org.apache.hbase</groupId>
162                         <artifactId>hbase-common</artifactId>
163                         <version>1.0.2</version>
164                         <exclusions>
165                                 <exclusion>
166                                         <artifactId>log4j</artifactId>
167                                         <groupId>log4j</groupId>
168                                 </exclusion>
169                         </exclusions>
170                 </dependency>
171                 <dependency>
172                         <groupId>com.google.inject.extensions</groupId>
173                         <artifactId>guice-servlet</artifactId>
174                         <version>3.0</version>
175                 </dependency>
176                 <dependency>
177                         <groupId>com.google.inject</groupId>
178                         <artifactId>guice</artifactId>
179                         <version>3.0</version>
180                 </dependency>
181
182                 <dependency>
183                         <groupId>com.sun.jersey</groupId>
184                         <artifactId>jersey-json</artifactId>
185                         <version>1.18</version>
186                 </dependency>
187                 <dependency>
188                         <groupId>jivesoftware</groupId>
189                         <artifactId>smack</artifactId>
190                         <version>3.0.4</version>
191                 </dependency>
192
193                 <dependency>
194                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
195                         <artifactId>jackson-jaxrs-json-provider</artifactId>
196                         <version>2.1.4</version>
197                 </dependency>
198                 <dependency>
199                         <groupId>com.googlecode.json-simple</groupId>
200                         <artifactId>json-simple</artifactId>
201                         <version>1.1.1</version>
202                 </dependency>
203                 <dependency>
204                         <groupId>com.sun.jersey</groupId>
205                         <artifactId>jersey-client</artifactId>
206                         <version>1.18</version>
207                 </dependency>
208                 <dependency>
209                         <groupId>org.springframework</groupId>
210                         <artifactId>spring-web</artifactId>
211                         <version>4.2.5.RELEASE</version>
212                 </dependency>
213                 <dependency>
214                         <groupId>org.springframework.ws</groupId>
215                         <artifactId>spring-ws</artifactId>
216                         <version>1.5.2</version>
217                         <!--<version>2.1.3-RELEASE</version> -->
218                 </dependency>
219                 <dependency>
220                         <groupId>org.springframework</groupId>
221                         <artifactId>spring-core</artifactId>
222                         <version>4.2.5.RELEASE</version>
223                 </dependency>
224                 <dependency>
225                         <groupId>org.mockito</groupId>
226                         <artifactId>mockito-all</artifactId>
227                         <version>1.10.19</version>
228                         <scope>test</scope>
229                 </dependency>
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                                         <excludes>
570                                 <exclude>**/*.java</exclude>            
571                                         </excludes>
572                                 </configuration>
573                         </plugin>
574                         <plugin>
575                         <groupId>org.apache.maven.plugins</groupId>
576                         <artifactId>maven-deploy-plugin</artifactId>
577                         <executions>
578                                 <execution>
579                                 <id>default-deploy</id>
580                                 <phase>none</phase>
581                                 </execution>
582                                 </executions>
583                         </plugin> 
584                         </plugins>
585         </build>
586                 <profiles>
587                 <!-- Use this profile to run the AJSC locally. This profile can be successfully 
588                         shutdown WITHIN eclipse even in a Windows environment. Debugging is also 
589                         available with this profile. -->
590                 <profile>
591                         <id>passwordGenerator</id>
592                         <build>
593                                 <defaultGoal>initialize</defaultGoal>
594                                 <plugins>
595                                         <plugin>
596                                                 <groupId>org.codehaus.mojo</groupId>
597                                                 <artifactId>exec-maven-plugin</artifactId>
598                                                 <version>1.3.2</version>
599                                                 <executions>
600                                                         <execution>
601                                                                 <phase>initialize</phase>
602                                                                 <goals>
603                                                                         <goal>java</goal>
604                                                                 </goals>
605                                                                 <configuration>
606                                                                         <mainClass>org.eclipse.jetty.util.security.Password</mainClass>
607                                                                         <arguments>
608                                                                                 <argument>user</argument>
609                                                                                 <argument>changeit</argument>
610                                                                         </arguments>
611                                                                 </configuration>
612                                                         </execution>
613                                                 </executions>
614                                                 <configuration>
615                                                         <executable>java</executable>
616                                                 </configuration>
617                                         </plugin>                                       
618                                 </plugins>
619                         </build>
620                 </profile>
621
622         </profiles>
623 </project>