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