f5aa22a9c8c5407153e05834c66de527e4467e06
[dmaap/messagerouter/msgrtr.git] / pom.xml
1 <!-- ============LICENSE_START======================================================= 
2         org.onap.dmaap ================================================================================ 
3         Copyright © 2017 AT&T Intellectual Property. All rights reserved. ================================================================================ 
4         Licensed under the Apache License, Version 2.0 (the "License"); you may not 
5         use this file except in compliance with the License. You may obtain a copy 
6         of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
7         by applicable law or agreed to in writing, software distributed under the 
8         License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
9         OF ANY KIND, either express or implied. See the License for the specific 
10         language governing permissions and limitations under the License. ============LICENSE_END========================================================= 
11         ECOMP is a trademark and service mark of AT&T Intellectual Property. -->
12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14         <modelVersion>4.0.0</modelVersion>
15         <groupId>org.onap.dmaap.messagerouter.msgrtr</groupId>
16         <artifactId>msgrtr</artifactId>
17         <version>1.1.3-SNAPSHOT</version>
18         <packaging>jar</packaging>
19         <name>dmaap-messagerouter-msgrtr</name>
20         <description>Message Router - Restful interface built for kafka</description>
21
22         <parent>
23                 <groupId>org.onap.oparent</groupId>
24                 <artifactId>oparent</artifactId>
25                 <version>1.1.0</version>
26         </parent>
27
28         <properties>
29                 <spring.version>3.2.18.RELEASE</spring.version>
30                 <cxf.version>3.0.4</cxf.version>
31                 <jstl.version>1.2</jstl.version>
32                 <maven.compiler.target>1.7</maven.compiler.target>
33                 <maven.compiler.source>1.7</maven.compiler.source>
34                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35                 
36
37                 <!-- SONAR -->
38                 <jacoco.version>0.7.7.201606060606</jacoco.version>
39                 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
40                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
41                 <!-- Default Sonar configuration -->
42                 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
43                 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
44                 <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
45                         below -->
46                 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
47                 <sitePath>/content/sites/site/org/onap/dmaap/messagerouter/msgrtr/${project.artifactId}/${project.version}</sitePath>
48                 <nexusproxy>https://nexus.onap.org</nexusproxy>
49         </properties>
50
51         <!-- Distribution management -->
52         <!-- Currently all artifacts will be uploaded to att-public-group reposiotry 
53                 on Maven Central -->
54         <distributionManagement>
55                 <site>
56                         <id>ecomp-site</id>
57                         <url>dav:${nexusproxy}${sitePath}</url>
58                 </site>
59         </distributionManagement>
60
61         <!-- End Distribution management -->
62
63         <licenses>
64                 <license>
65                         <name>Apache License Version 2.0</name>
66                 </license>
67         </licenses>
68
69         <developers>
70                 <developer>
71                         <name>Rajashree</name>
72                         <email></email>
73                         <organization>ATT</organization>
74                         <organizationUrl>www.att.com</organizationUrl>
75                 </developer>
76                 <developer>
77                         <name>Ramkumar</name>
78                         <email></email>
79                         <organization>ATT</organization>
80                         <organizationUrl>www.att.com</organizationUrl>
81                 </developer>
82         </developers>
83
84         <dependencies>
85             <dependency>
86                         <groupId>org.apache.tomcat</groupId>
87                         <artifactId>tomcat-catalina</artifactId>
88                         <version>8.0.49</version>
89                 </dependency>
90                 <dependency>
91                         <groupId>org.apache.tomcat</groupId>
92                         <artifactId>tomcat-util</artifactId>
93                         <version>8.0.49</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.apache.tomcat.embed</groupId>
97                         <artifactId>tomcat-embed-core</artifactId>
98                         <version>8.0.49</version>
99                 </dependency>
100                 <dependency>
101                         <groupId>commons-collections</groupId>
102                         <artifactId>commons-collections</artifactId>
103                         <version>3.2.2</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>ch.qos.logback</groupId>
107                         <artifactId>logback-core</artifactId>
108                         <version>1.2.0</version>
109                 </dependency>
110                 <dependency>
111                         <groupId>ch.qos.logback</groupId>
112                         <artifactId>logback-classic</artifactId>
113                         <version>1.2.0</version>
114                 </dependency>
115                 <!-- <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> 
116                         <version>1.9.2</version> <exclusions> We have JCL-over-SLF4J instead. <exclusion> 
117                         <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> 
118                         </exclusion> </exclusions> </dependency> -->
119                 <dependency>
120                         <groupId>org.grails</groupId>
121                         <artifactId>grails-web</artifactId>
122                         <version>2.5.4</version>
123                         <exclusions>
124                                 <exclusion>
125                                         <groupId>org.grails</groupId>
126                                         <artifactId>grails-web-jsp</artifactId>
127                                 </exclusion>
128                         </exclusions>
129                 </dependency>
130                  <dependency>
131       <groupId>org.grails</groupId>
132       <artifactId>grails-bootstrap</artifactId>
133       <version>2.5.4</version>
134       <scope>compile</scope>
135       <exclusions>
136         <exclusion>
137           <artifactId>ant</artifactId>
138           <groupId>org.apache.ant</groupId>
139         </exclusion>
140         <exclusion>
141           <artifactId>jna</artifactId>
142           <groupId>net.java.dev.jna</groupId>
143         </exclusion>
144         <exclusion>
145           <artifactId>ant-trax</artifactId>
146           <groupId>org.apache.ant</groupId>
147         </exclusion>
148         <exclusion>
149           <artifactId>gant_groovy1.8</artifactId>
150           <groupId>org.codehaus.gant</groupId>
151         </exclusion>
152         <exclusion>
153           <artifactId>ant-launcher</artifactId>
154           <groupId>org.apache.ant</groupId>
155         </exclusion>
156         <exclusion>
157           <artifactId>jline</artifactId>
158           <groupId>jline</groupId>
159         </exclusion>
160         <exclusion>
161           <artifactId>ivy</artifactId>
162           <groupId>org.apache.ivy</groupId>
163         </exclusion>
164         <exclusion>
165           <artifactId>jansi</artifactId>
166           <groupId>org.fusesource.jansi</groupId>
167         </exclusion>
168         <exclusion>
169           <artifactId>commons-logging</artifactId>
170           <groupId>commons-logging</groupId>
171         </exclusion>
172         <exclusion>
173           <artifactId>ant-junit</artifactId>
174           <groupId>org.apache.ant</groupId>
175         </exclusion>
176       </exclusions>
177     </dependency>
178                 <dependency>
179                         <groupId>org.springframework</groupId>
180                         <artifactId>spring-test</artifactId>
181                         <version>${spring.version}</version>
182                         <scope>test</scope>
183                 </dependency>
184                 <dependency>
185                         <groupId>org.codehaus.groovy</groupId>
186                         <artifactId>groovy-all</artifactId>
187                         <version>2.4.4</version>
188                         <scope>compile</scope>
189                         <exclusions>
190                                 <exclusion>
191                                         <artifactId>jline</artifactId>
192                                         <groupId>jline</groupId>
193                                 </exclusion>
194                         </exclusions>
195                 </dependency>
196                 <dependency>
197                         <groupId>commons-fileupload</groupId>
198                         <artifactId>commons-fileupload</artifactId>
199                         <version>1.3.3</version>
200                 </dependency>
201
202                 <dependency>
203                         <groupId>junit</groupId>
204                         <artifactId>junit</artifactId>
205                         <version>4.11</version>
206                         <scope>test</scope>
207                 </dependency>
208                 <dependency>
209                         <groupId>com.att.aft</groupId>
210                         <artifactId>dme2</artifactId>
211                         <version>3.1.200-oss</version>
212                 </dependency>
213
214                 <!-- slf4j logger -->
215                 <dependency>
216                         <groupId>org.slf4j</groupId>
217                         <artifactId>slf4j-api</artifactId>
218                         <version>1.7.6</version>
219                 </dependency>
220
221                 <dependency>
222                         <groupId>javax.inject</groupId>
223                         <artifactId>javax.inject</artifactId>
224                         <version>1</version>
225                 </dependency>
226
227                 <dependency>
228                         <groupId>com.att.ajsc</groupId>
229                         <artifactId>ajsc-core</artifactId>
230                         <version>1.0.0</version>
231                 </dependency>
232
233                 <dependency>
234                         <groupId>javax.ws.rs</groupId>
235                         <artifactId>javax.ws.rs-api</artifactId>
236                         <version>2.0.1</version>
237                 </dependency>
238
239                 <!-- <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-rs-client</artifactId> 
240                         <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> 
241                         <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>${cxf.version}</version> 
242                         </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> 
243                         <version>${cxf.version}</version> </dependency> Jetty is needed if you're 
244                         are not using the CXFServlet <dependency> <groupId>org.apache.cxf</groupId> 
245                         <artifactId>cxf-rt-transports-http-jetty</artifactId> <version>${cxf.version}</version> 
246                         </dependency> -->
247                 <!-- Begin - Spring Dependencies for DI -->
248                 <dependency>
249                         <groupId>org.springframework</groupId>
250                         <artifactId>spring-core</artifactId>
251                         <version>${spring.version}</version>
252                 </dependency>
253                 <dependency>
254                         <groupId>org.springframework</groupId>
255                         <artifactId>spring-context</artifactId>
256                         <version>${spring.version}</version>
257                 </dependency>
258                 <dependency>
259                         <groupId>org.springframework</groupId>
260                         <artifactId>spring-webmvc</artifactId>
261                         <version>${spring.version}</version>
262                 </dependency>
263                 <dependency>
264                         <groupId>org.springframework</groupId>
265                         <artifactId>spring-web</artifactId>
266                         <version>${spring.version}</version>
267                 </dependency>
268                 <dependency>
269                         <groupId>javax.servlet</groupId>
270                         <artifactId>javax.servlet-api</artifactId>
271                         <version>3.0.1</version>
272                         <scope>provided</scope>
273                 </dependency>
274                 <!-- End - Spring Dependencies for DI -->
275                 <!-- Begin - Dependency on Dmaap Spring layer -->
276                 <!-- <dependency> <groupId>com.att.dmaap</groupId> <artifactId>dmaap-spring</artifactId> 
277                         <version>0.0.1-SNAPSHOT</version> </dependency> -->
278                 <!-- End - Dependency on Dmaap Spring layer -->
279                 <!-- Begin - Dependency on log4j for logging purpose -->
280                 <!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> 
281                         <version>1.2.17</version> </dependency> -->
282                 <!-- Log4j's enhanced pattern layout is shipped separately <dependency> 
283                         <groupId>log4j</groupId> <artifactId>apache-log4j-extras</artifactId> <version>1.2.17</version> 
284                         </dependency> -->
285                 <!-- End - Dependency on log4j for logging purpose -->
286                 <!-- ZooKeeper Library -->
287                 <dependency>
288                         <groupId>org.apache.zookeeper</groupId>
289                         <artifactId>zookeeper</artifactId>
290                         <version>3.4.10</version>
291                 </dependency>
292
293                 <!-- JSON libraries -->
294                 <dependency>
295                         <groupId>org.json</groupId>
296                         <artifactId>json</artifactId>
297                         <version>20131018</version>
298                 </dependency>
299
300                 <!-- Apache Kafka -->
301                 <dependency>
302                         <groupId>org.apache.kafka</groupId>
303                         <artifactId>kafka_2.10</artifactId>
304                         <version>0.8.2.1</version>
305                 </dependency>
306
307                 <dependency>
308                         <groupId>com.att.eelf</groupId>
309                         <artifactId>eelf-core</artifactId>
310                         <version>0.0.1</version>
311                         <scope>compile</scope>
312                 </dependency>
313                 <!-- our NSA server library -->
314                 <dependency>
315                         <groupId>com.att.nsa</groupId>
316                         <artifactId>nsaServerLibrary</artifactId>
317                         <version>1.0.10</version>
318                 </dependency>
319                 <dependency>
320                         <groupId>com.att.nsa</groupId>
321                         <artifactId>saToolkit</artifactId>
322                         <version>0.0.1</version>
323                 </dependency>
324
325                 <!-- our Highland Park library -->
326                 <!-- <dependency> <groupId>com.att.nsa</groupId> <artifactId>highlandParkCore</artifactId> 
327                         <version>0.4.9</version> </dependency> -->
328
329                 <!-- our base client library, for its command line tools -->
330                 <dependency>
331                         <groupId>com.att.nsa</groupId>
332                         <artifactId>saClientLibrary</artifactId>
333                         <version>0.0.1</version>
334                         <exclusions>
335                                 <exclusion>
336                                         <groupId>org.apache.httpcomponents</groupId>
337                                         <artifactId>httpclient</artifactId>
338                                 </exclusion>
339                                 <exclusion>
340                                         <groupId>org.apache.httpcomponents</groupId>
341                                         <artifactId>httpclient-cache</artifactId>
342                                 </exclusion>
343                         </exclusions>
344                 </dependency>
345                 <dependency>
346                         <groupId>org.apache.httpcomponents</groupId>
347                         <artifactId>httpclient</artifactId>
348                         <version>4.5.3</version>
349                 </dependency>
350                 <dependency>
351                         <groupId>org.apache.httpcomponents</groupId>
352                         <artifactId>httpclient-cache</artifactId>
353                         <version>4.5.3</version>
354                 </dependency>
355                 <dependency>
356                         <groupId>org.apache.httpcomponents</groupId>
357                         <artifactId>httpcore</artifactId>
358                         <version>4.4.1</version>
359                 </dependency>
360
361
362                 <!-- explicit jline add b/c it conflicts with the zk client -->
363                 <dependency>
364                         <groupId>jline</groupId>
365                         <artifactId>jline</artifactId>
366                         <version>2.12.1</version>
367                 </dependency>
368
369                 <dependency>
370                         <groupId>org.apache.curator</groupId>
371                         <artifactId>curator-recipes</artifactId>
372                         <version>2.6.0</version>
373                 </dependency>
374
375                 <dependency>
376                         <groupId>org.apache.curator</groupId>
377                         <artifactId>curator-test</artifactId>
378                         <version>2.6.0</version>
379                 </dependency>
380
381
382                 <dependency>
383                         <groupId>com.google.code.gson</groupId>
384                         <artifactId>gson</artifactId>
385                         <version>2.8.0</version>
386                 </dependency>
387
388                 <dependency>
389                         <groupId>com.fasterxml.jackson.core</groupId>
390                         <artifactId>jackson-core</artifactId>
391                         <version>2.8.11</version>
392                         <scope>test</scope>
393                 </dependency>
394
395                 <dependency>
396                         <groupId>com.fasterxml.jackson.core</groupId>
397                         <artifactId>jackson-databind</artifactId>
398                         <version>2.8.11.1</version>
399                 </dependency>
400
401                 <dependency>
402                         <groupId>org.powermock</groupId>
403                         <artifactId>powermock-api-mockito</artifactId>
404                         <version>1.6.4</version>
405                         <scope>test</scope>
406                 </dependency>
407
408                 <dependency>
409                         <groupId>org.powermock</groupId>
410                         <artifactId>powermock-module-junit4</artifactId>
411                         <version>1.6.4</version>
412                         <scope>test</scope>
413                 </dependency>
414
415                 <dependency>
416                         <groupId>org.powermock</groupId>
417                         <artifactId>powermock-module-junit4-rule</artifactId>
418                         <version>1.6.4</version>
419                         <scope>test</scope>
420                 </dependency>
421                 <dependency>
422                         <groupId>org.mockito</groupId>
423                         <artifactId>mockito-core</artifactId>
424                         <version>1.10.19</version>
425                         <scope>test</scope>
426                 </dependency>
427
428         </dependencies>
429         <build>
430                 <finalName>DMaaP</finalName>
431                 <resources>
432                         <resource>
433                                 <directory>src/main/resources</directory>
434                                 <filtering>true</filtering>
435                                 <includes>
436                                         <include>**/*.properties</include>
437                                 </includes>
438                         </resource>
439                         <!-- <resource> <directory>src/main/config</directory> <filtering>true</filtering> 
440                                 <includes> <include>**/log4j*.xml</include> </includes> </resource> <resource> 
441                                 <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> 
442                                 <exclude>**/cambriaApiVersion.properties</exclude> </excludes> </resource> -->
443                 </resources>
444                 <plugins>
445                         <!-- <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4.1</version> 
446                                 <configuration> <descriptors> <descriptor>src/assembly/dep.xml</descriptor> 
447                                 </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> 
448                                 this is used for inheritance merges -->
449                         <!-- <phase>package</phase> bind to the packaging phase <goals> <goal>single</goal> 
450                                 </goals> </execution> </executions> </plugin> -->
451                         <!-- -->
452                         <plugin>
453                                 <groupId>org.apache.maven.plugins</groupId>
454                                 <artifactId>maven-site-plugin</artifactId>
455                                 <version>3.6</version>
456                                 <dependencies>
457                                         <dependency>
458                                                 <groupId>org.apache.maven.wagon</groupId>
459                                                 <artifactId>wagon-webdav-jackrabbit</artifactId>
460                                                 <version>2.10</version>
461                                         </dependency>
462                                 </dependencies>
463                         </plugin>
464                         <plugin>
465                                 <groupId>org.apache.maven.plugins</groupId>
466                                 <artifactId>maven-javadoc-plugin</artifactId>
467                                 <version>2.10.4</version>
468                                 <configuration>
469                                         <additionalparam>-Xdoclint:none</additionalparam>
470                                 </configuration>
471                                 <executions>
472                                         <execution>
473                                                 <id>attach-javadocs</id>
474                                                 <goals>
475                                                         <goal>jar</goal>
476                                                 </goals>
477                                         </execution>
478                                 </executions>
479                         </plugin>
480                         <plugin>
481                                 <groupId>org.apache.maven.plugins</groupId>
482                                 <artifactId>maven-source-plugin</artifactId>
483                                 <version>3.0.0</version>
484                                 <executions>
485                                         <execution>
486                                                 <id>attach-sources</id>
487                                                 <goals>
488                                                         <goal>jar-no-fork</goal>
489                                                 </goals>
490                                         </execution>
491                                 </executions>
492                         </plugin>
493                         <plugin>
494                                 <groupId>org.apache.maven.plugins</groupId>
495                                 <artifactId>maven-surefire-plugin</artifactId>
496                                 <version>2.12.4</version>
497                                 <configuration>
498                                         <excludes>
499                                                 <!-- exclude until junits updated <exclude>**/DME2*.java</exclude> -->
500                                         </excludes>
501                                         <!-- <skipTests>true</skipTests> -->
502                                 </configuration>
503                         </plugin>
504                         <plugin>
505                                 <groupId>org.codehaus.mojo</groupId>
506                                 <artifactId>cobertura-maven-plugin</artifactId>
507                                 <version>2.7</version>
508                                 <configuration>
509                                         <formats>
510                                                 <format>html</format>
511                                                 <format>xml</format>
512                                         </formats>
513                                 </configuration>
514                         </plugin>
515                         <!-- <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> 
516                                 <version>${jacoco.version}</version> <configuration> Note: This exclusion 
517                                 list should match <sonar.exclusions> property above <excludes> <exclude>**/gen/**</exclude> 
518                                 <exclude>**/generated-sources/**</exclude> <exclude>**/yang-gen/**</exclude> 
519                                 <exclude>**/pax/**</exclude> </excludes> </configuration> <executions> Prepares 
520                                 the property pointing to the JaCoCo runtime agent which is passed as VM argument 
521                                 when Maven the Surefire plugin is executed. <execution> <id>pre-unit-test</id> 
522                                 <goals> <goal>prepare-agent</goal> </goals> <configuration> Sets the path 
523                                 to the file which contains the execution data. <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile> 
524                                 Sets the name of the property containing the settings for JaCoCo runtime 
525                                 agent. <propertyName>surefireArgLine</propertyName> </configuration> </execution> 
526                                 Ensures that the code coverage report for unit tests is created after unit 
527                                 tests have been run. <execution> <id>post-unit-test</id> <phase>test</phase> 
528                                 <goals> <goal>report</goal> </goals> <configuration> Sets the path to the 
529                                 file which contains the execution data. <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> 
530                                 Sets the output directory for the code coverage report. <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> 
531                                 </configuration> </execution> <execution> <id>pre-integration-test</id> <phase>pre-integration-test</phase> 
532                                 <goals> <goal>prepare-agent</goal> </goals> <configuration> Sets the path 
533                                 to the file which contains the execution data. <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile> 
534                                 Sets the name of the property containing the settings for JaCoCo runtime 
535                                 agent. <propertyName>failsafeArgLine</propertyName> </configuration> </execution> 
536                                 Ensures that the code coverage report for integration tests after integration 
537                                 tests have been run. <execution> <id>post-integration-test</id> <phase>post-integration-test</phase> 
538                                 <goals> <goal>report</goal> </goals> <configuration> Sets the path to the 
539                                 file which contains the execution data. <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile> 
540                                 Sets the output directory for the code coverage report. <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory> 
541                                 </configuration> </execution> </executions> </plugin> -->
542                 </plugins>
543         </build>
544
545         <!-- <profiles> <profile> <id>jenkins</id> <activation> <property> <name>env.BUILD_NUMBER</name> 
546                 </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> 
547                 <artifactId>cobertura-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.att.aft.swm</groupId> 
548                 <artifactId>swm-plugin</artifactId> <version>1.4.4.12</version> <configuration> 
549                 <distFilesRootDirPath>/opt/app/dmaap/msgrtr/jenkinsbuild</distFilesRootDirPath> 
550                 <version>${project.version}-${env.BUILD_NUMBER}</version> <scriptExcludes> 
551                 <scriptExclude>**/swmpkgclean.sh</scriptExclude> </scriptExcludes> </configuration> 
552                 <executions> <execution> <id>pkgstage</id> <goals> <goal>pkgstage</goal> 
553                 </goals> </execution> <execution> <id>pkgcreate</id> <goals> <goal>pkgcreate</goal> 
554                 </goals> </execution> <execution> <id>pkginstall</id> <goals> <goal>install</goal> 
555                 </goals> <configuration> <componentName>com.att.nsa:msgrtr</componentName> 
556                 <version>${project.version}-${env.BUILD_NUMBER}</version> <waitTimeMins>4</waitTimeMins> 
557                 <properties> <property> <name>overrideDependencyConflicts</name> <value>true</value> 
558                 </property> <property> <name>AFTSWM_NOTIFY_ADDRESSES</name> <value>mailto:rs857c@att.com</value> 
559                 </property> </properties> </configuration> </execution> </executions> </plugin> 
560                 <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> 
561                 <phase>package</phase> <configuration> <tasks> <copy file="./src/main/scripts/swmpkgclean.sh" 
562                 toDir="./target" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> 
563                 </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> 
564                 <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> <configuration> 
565                 <skip>true</skip> </configuration> </plugin> </plugins> </build> </profile> 
566                 </profiles> -->
567 </project>