Merge "Sonar vulnerability fixes in MusicDataStoreHandle"
[music.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  ============LICENSE_START==========================================
4  org.onap.music
5  ===================================================================
6   Copyright (c) 2017 AT&T Intellectual Property
7  ===================================================================
8   Modifications Copyright (c) 2019 IBM.
9  ===================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22  ============LICENSE_END=============================================
23  ====================================================================
24 -->
25 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27     <groupId>org.onap.music</groupId>
28     <artifactId>MUSIC</artifactId>
29     <packaging>jar</packaging>
30     <version>3.2.18-SNAPSHOT</version>
31     <description>
32             This is the MUSIC REST interface, packaged as a Springboot jar file.
33     </description>
34
35       <parent>
36         <groupId>org.onap.oparent</groupId>
37         <artifactId>oparent</artifactId>
38         <version>1.2.0</version>
39         <relativePath/>
40     </parent> 
41
42     <dependencyManagement>
43         <dependencies>
44             <!-- <dependency>
45                 <groupId>org.springframework.boot</groupId>
46                 <artifactId>spring-boot-starter-data-jpa</artifactId>
47                 <version>2.0.3.RELEASE</version>
48                </dependency> -->
49             <dependency>
50                 <groupId>org.springframework.boot</groupId>
51                 <artifactId>spring-boot-dependencies</artifactId>
52                 <version>2.1.1.RELEASE</version>
53                 <type>pom</type>
54                 <scope>import</scope>
55             </dependency>
56         </dependencies>
57     </dependencyManagement>
58     <properties>
59         <start-class>org.onap.music.MusicApplication</start-class>
60         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
61         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
62         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
63         <java.version>1.8</java.version>
64         <jersey1.version>1.19</jersey1.version>
65         <jersey2.version>2.25.1</jersey2.version>
66         <jaxrs.version>2.0.1</jaxrs.version>
67         <cassandra.version>3.6.0</cassandra.version>
68         <zookeeper.version>3.4.11</zookeeper.version>
69
70         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
71         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
72         <!--nexus -->
73         <nexusproxy>https://nexus.onap.org</nexusproxy>
74         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
75         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
76         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
77         <sitePath>/content/sites/site/org/onap/music/${project.version}</sitePath>
78         <!--maven -->
79         <timestamp>${maven.build.timestamp}</timestamp>
80         <maven.build.timestamp.format>yyyy.MM.dd.HH.mm</maven.build.timestamp.format>
81         <!--docker -->
82         <docker.tag>${project.version}-${timestamp}</docker.tag>
83         <docker.latest.tag>${project.version}-latest</docker.latest.tag>
84         <maven.compiler.source>1.8</maven.compiler.source>
85         <maven.compiler.target>1.8</maven.compiler.target>
86     </properties>
87
88     <repositories>
89         <repository>
90             <id>onap-releases</id>
91             <name>ONAP - Release Repository</name>
92             <url>${nexusproxy}/${releaseNexusPath}</url>
93         </repository>
94         <repository>
95             <id>onap-staging</id>
96             <name>ONAP - Staging Repository</name>
97             <url>${nexusproxy}/${stagingNexusPath}</url>
98         </repository>
99         <repository>
100             <id>onap-snapshots</id>
101             <name>ONAP - Snapshot Repository</name>
102             <url>${nexusproxy}/${snapshotNexusPath}</url>
103         </repository>
104         <repository>
105             <id>onap-public</id>
106             <name>ONAP public Repository</name>
107             <url>${nexusproxy}/content/groups/public</url>
108         </repository>
109         <repository>
110             <!-- SWM repository has EELF jars -->
111             <id>att-cadi-repo</id>
112             <name>ATT CADI Repository</name>
113             <url>http://mavencentral.it.att.com:8084/nexus/content/repositories/attarch-releases/</url>
114         </repository>
115         
116     </repositories>
117
118     <build>
119         <!-- <finalName>${project.artifactId}-${project.version}-${timestamp}</finalName>-->
120         <finalName>${project.artifactId}</finalName>
121         <sourceDirectory>src/main/java</sourceDirectory>
122         <outputDirectory>src/main/webapp/WEB-INF/classes</outputDirectory>
123         <testSourceDirectory>src/test/java</testSourceDirectory>
124         <testOutputDirectory>target/test-classes</testOutputDirectory>
125         <defaultGoal>validate</defaultGoal>
126         <resources>
127             <resource>
128                 <directory>src/main/resources</directory>
129                 <filtering>true</filtering>
130                 <includes>
131                 <include>**/*.properties</include>
132                 <include>**/*.xml</include>
133                 <include>**/*.ccf</include>
134                 </includes>
135             </resource>
136         </resources>
137         <plugins>
138             <plugin>
139                 <groupId>org.springframework.boot</groupId>
140                 <artifactId>spring-boot-maven-plugin</artifactId>
141                 <configuration>
142                     <mainClass>org.onap.music.MusicApplication</mainClass>
143                     <outputDirectory>./distribution/music/</outputDirectory>
144                     <addResources>true</addResources>
145                  </configuration>
146                 <executions>
147                     <execution>
148                         <goals>
149                             <goal>repackage</goal>
150                         </goals>
151                     </execution>
152                 </executions>
153             </plugin>
154 <!--
155             <plugin>
156                 <artifactId>maven-war-plugin</artifactId>
157                 <version>2.4</version>
158                 <configuration>
159                     <warSourceDirectory>WebContent</warSourceDirectory>
160                     <failOnMissingWebXml>false</failOnMissingWebXml>
161                 </configuration>
162             </plugin>
163 -->
164             <plugin>
165                 <groupId>org.apache.maven.plugins</groupId>
166                 <artifactId>maven-jar-plugin</artifactId>
167                 <version>2.4</version>
168                 <executions>
169                     <execution>
170                         <id>make-a-jar</id>
171                         <phase>compile</phase>
172                         <goals>
173                             <goal>jar</goal>
174                         </goals>
175                         <configuration>
176                             <excludes>
177                                 <!--<exclude>**/*.xml</exclude>
178                                 <exclude>**/*.properties</exclude>-->
179                                 <exclude>**/Sample*</exclude>
180                             </excludes>
181                         </configuration>
182                     </execution>
183                 </executions>
184             </plugin>
185             <plugin>
186                 <groupId>org.apache.maven.plugins</groupId>
187                 <artifactId>maven-install-plugin</artifactId>
188                 <version>2.4</version>
189                 <executions>
190                     <execution>
191                         <phase>install</phase>
192                         <goals>
193                             <goal>install-file</goal>
194                         </goals>
195                         <configuration>
196                             <packaging>jar</packaging>
197                             <artifactId>${project.artifactId}</artifactId>
198                             <groupId>${project.groupId}</groupId>
199                             <version>${project.version}</version>
200                             <file>${project.build.directory}/${project.artifactId}.jar</file>
201                         </configuration>
202                     </execution>
203                 </executions>
204             </plugin>
205         </plugins>
206     </build>
207
208     <dependencies>
209         <!-- Springboot -->
210          <dependency>
211             <groupId>org.springframework.boot</groupId>
212             <artifactId>spring-boot-starter</artifactId>
213         </dependency>
214         <dependency>
215             <groupId>org.springframework.data</groupId>
216             <artifactId>spring-data-cassandra</artifactId>
217         </dependency>
218         <dependency>
219             <groupId>org.springframework.boot</groupId>
220             <artifactId>spring-boot-starter-jersey</artifactId>
221         </dependency>
222         <dependency>
223             <groupId>org.springframework.boot</groupId>
224             <artifactId>spring-boot-starter-tomcat</artifactId>
225         </dependency>
226         <dependency>
227             <groupId>org.springframework.boot</groupId>
228             <artifactId>spring-boot-starter-test</artifactId>
229             <scope>test</scope>
230         </dependency>
231         <dependency>
232           <groupId>org.springframework.boot</groupId>
233           <artifactId>spring-boot-starter-actuator</artifactId>
234         </dependency>
235         <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
236          <dependency>
237             <groupId>org.springframework</groupId>
238             <artifactId>spring-aop</artifactId>
239             <scope>compile</scope>
240         </dependency>
241         <!--  Swagger 2 -->
242 <!--         <dependency>
243             <groupId>io.springfox</groupId>
244             <artifactId>springfox-swagger2</artifactId>
245             <version>2.8.0</version>
246             <scope>compile</scope>
247         </dependency>
248  -->
249 <!--         <dependency>
250             <groupId>io.springfox</groupId>
251             <artifactId>springfox-swagger-ui</artifactId>
252             <version>2.8.0</version>
253             <scope>compile</scope>
254         </dependency>
255   -->
256         <!-- End Swagger -->
257         <dependency>
258             <groupId>org.aspectj</groupId>
259             <artifactId>aspectjweaver</artifactId>
260             <scope>compile</scope>
261         </dependency>
262         
263         <!-- Springboot -->
264         <!-- Development -->
265         <dependency>
266             <groupId>javax.servlet</groupId>
267             <artifactId>servlet-api</artifactId>
268             <version>2.4</version>
269             <scope>provided</scope>
270         </dependency>
271         <dependency>
272             <groupId>org.springframework.boot</groupId>
273             <artifactId>spring-boot-autoconfigure</artifactId>
274         </dependency>
275         <dependency>
276             <groupId>javax.servlet</groupId>
277             <artifactId>javax.servlet-api</artifactId>
278             <version>3.0.1</version>
279             <scope>provided</scope>
280         </dependency>
281         <!-- /Development -->
282         <!-- Logging -->
283         <dependency>
284             <groupId>ch.qos.logback</groupId>
285             <artifactId>logback-core</artifactId>
286             <version>1.2.3</version>
287             <exclusions>
288                 <exclusion>
289                     <groupId>org.slf4j</groupId>
290                     <artifactId>slf4j-log4j12</artifactId>
291                 </exclusion>
292             </exclusions>
293         </dependency>
294         <dependency>
295             <groupId>ch.qos.logback</groupId>
296             <artifactId>logback-classic</artifactId>
297             <version>1.2.3</version>
298             <exclusions>
299                 <exclusion>
300                     <groupId>org.slf4j</groupId>
301                     <artifactId>slf4j-log4j12</artifactId>
302                 </exclusion>
303             </exclusions>
304         </dependency>
305         <dependency>
306             <groupId>com.att.eelf</groupId>
307             <artifactId>eelf-core</artifactId>
308             <version>1.0.1-oss</version>
309             <exclusions>
310                 <exclusion>
311                     <groupId>org.powermock</groupId>
312                     <artifactId>powermock-api-mockito</artifactId>
313                 </exclusion>
314                 <exclusion>
315                     <groupId>org.powermock</groupId>
316                     <artifactId>powermock-module-junit4</artifactId>
317                 </exclusion>
318             </exclusions>
319         </dependency>
320         <!-- End Logging -->
321         <!-- Cassandra -->
322         <dependency>
323         <groupId>io.dropwizard.metrics</groupId>
324         <artifactId>metrics-core</artifactId>
325         <version>4.1.0-rc3</version>
326         </dependency>
327         <dependency>
328         <groupId>com.datastax.cassandra</groupId>
329         <artifactId>cassandra-driver-core</artifactId>
330         <version>3.6.0</version>
331         </dependency>
332          <dependency>
333             <groupId>com.datastax.cassandra</groupId>
334             <artifactId>cassandra-driver-core</artifactId>
335             <version>${cassandra.version}</version>
336            <exclusions>
337         <!-- <exclusion>
338         <groupId>io.netty</groupId>
339         <artifactId>*</artifactId>
340         </exclusion> -->
341     </exclusions>
342         </dependency> 
343         <!-- /Cassandra -->
344         <!-- Zookeeper -->
345         <dependency>
346             <groupId>org.apache.zookeeper</groupId>
347             <artifactId>zookeeper</artifactId>
348             <version>${zookeeper.version}</version>
349             <exclusions>
350                 <exclusion>
351                     <groupId>org.slf4j</groupId>
352                     <artifactId>slf4j-log4j12</artifactId>
353                 </exclusion>
354             </exclusions>
355         </dependency>
356         <!-- /Zookeeper -->
357         <!-- Jersey -->
358         <dependency>
359             <groupId>com.sun.jersey</groupId>
360             <artifactId>jersey-client</artifactId>
361             <version>${jersey1.version}</version>
362         </dependency>
363         <dependency>
364             <groupId>com.sun.jersey</groupId>
365             <artifactId>jersey-server</artifactId>
366             <version>${jersey1.version}</version>
367         </dependency>
368         <dependency>
369             <groupId>com.sun.jersey</groupId>
370             <artifactId>jersey-json</artifactId>
371             <version>${jersey1.version}</version>
372         </dependency>
373         <dependency>
374             <groupId>com.sun.jersey</groupId>
375             <artifactId>jersey-servlet</artifactId>
376             <version>${jersey1.version}</version>
377         </dependency>
378         <!-- /Jersey -->
379
380         <dependency>
381             <groupId>org.apache.commons</groupId>
382             <artifactId>commons-jcs-core</artifactId>
383             <version>2.2</version>
384         </dependency>
385         <dependency>
386             <groupId>commons-codec</groupId>
387             <artifactId>commons-codec</artifactId>
388             <version>1.11</version>
389         </dependency>
390         <dependency>
391             <groupId>org.apache.commons</groupId>
392             <artifactId>commons-lang3</artifactId>
393             <version>3.8</version>
394         </dependency>
395         <!-- Testing -->
396         <dependency>
397             <groupId>junit</groupId>
398             <artifactId>junit</artifactId>
399             <version>4.12</version>
400             <scope>test</scope>
401         </dependency>
402         <!-- <dependency>
403             <groupId>org.cassandraunit</groupId>
404             <artifactId>cassandra-unit</artifactId>
405             <version>3.3.0.2</version>
406             <scope>test</scope>
407             <exclusions>
408                 <exclusion>
409                     <groupId>io.dropwizard.metrics</groupId>
410                     <artifactId>metrics-core</artifactId>
411                 </exclusion>
412                 <exclusion>
413                     <groupId>com.addthis.metrics</groupId>
414                     <artifactId>reporter-config-base</artifactId>
415                 </exclusion>
416             </exclusions>
417         </dependency> -->
418         <dependency>
419         <groupId>org.cassandraunit</groupId>
420         <artifactId>cassandra-unit-spring</artifactId>
421         <version>3.5.0.1</version>
422         <scope>test</scope>
423         <exclusions>
424             <exclusion>
425                 <groupId>org.slf4j</groupId>
426                 <artifactId>slf4j-log4j12</artifactId>
427             </exclusion>
428             <exclusion>
429                 <groupId>ch.qos.logback</groupId>
430                 <artifactId>logback-core</artifactId>
431             </exclusion>
432             <exclusion>
433                 <groupId>ch.qos.logback</groupId>
434                 <artifactId>logback-classic</artifactId>
435             </exclusion>
436             <exclusion>
437                 <groupId>org.cassandraunit</groupId>
438                 <artifactId>cassandra-unit</artifactId>
439             </exclusion>
440             <exclusion>
441                 <groupId>io.dropwizard.metrics</groupId>
442                 <artifactId>metrics-core</artifactId>
443             </exclusion>
444         </exclusions>
445     </dependency>
446     <dependency>
447             <groupId>org.cassandraunit</groupId>
448             <artifactId>cassandra-unit-shaded</artifactId>
449             <version>3.5.0.1</version>
450             <scope>test</scope>
451         </dependency>
452         <dependency>
453             <groupId>io.dropwizard.metrics</groupId>
454             <artifactId>metrics-core</artifactId>
455             <version>3.1.0</version>
456         </dependency>
457         <dependency>
458             <groupId>org.apache.curator</groupId>
459             <artifactId>curator-test</artifactId>
460             <version>2.3.0</version>
461             <exclusions>
462                 <exclusion>
463                     <groupId>org.apache.zookeeper</groupId>
464                     <artifactId>zookeeper</artifactId>
465                 </exclusion>
466                 <exclusion>
467                     <groupId>org.slf4j</groupId>
468                     <artifactId>slf4j-log4j12</artifactId>
469                 </exclusion>
470             </exclusions>
471             <scope>test</scope>
472         </dependency>
473         <dependency>
474             <groupId>org.mockito</groupId>
475             <artifactId>mockito-core</artifactId>
476             <version>2.23.4</version>
477             <scope>test</scope>
478         </dependency>
479         <!--  /Testing -->
480         <dependency>
481             <groupId>com.fasterxml.jackson.core</groupId>
482             <artifactId>jackson-databind</artifactId>
483             </dependency>
484         <dependency>
485                 <groupId>com.fasterxml.jackson.core</groupId>
486                 <artifactId>jackson-core</artifactId>
487                 </dependency>
488         <dependency>
489                 <groupId>com.fasterxml.jackson.core</groupId>
490                 <artifactId>jackson-annotations</artifactId>
491                 </dependency>
492         <dependency>
493             <groupId>org.apache.httpcomponents</groupId>
494             <artifactId>httpclient</artifactId>
495         </dependency>
496         <dependency>
497             <groupId>io.swagger</groupId>
498             <artifactId>swagger-jersey-jaxrs</artifactId>
499             <version>1.5.21</version>
500         </dependency>
501         <dependency>
502             <groupId>com.google.guava</groupId>
503             <artifactId>guava</artifactId>
504         </dependency>
505         <dependency>
506             <groupId>org.mindrot</groupId>
507             <artifactId>jbcrypt</artifactId>
508             <version>0.4</version>
509         </dependency>
510      <dependency>
511         <groupId>org.onap.aaf.authz</groupId>
512         <artifactId>aaf-cadi-aaf</artifactId>
513         <version>2.1.7</version>
514     </dependency>
515     <dependency>
516         <groupId>org.onap.aaf.authz</groupId>
517         <artifactId>aaf-cadi-client</artifactId>
518         <version>2.1.7</version>
519     </dependency>
520     <dependency>
521         <groupId>org.onap.aaf.authz</groupId>
522         <artifactId>aaf-cadi-core</artifactId>
523         <version>2.1.7</version>
524     </dependency>
525
526         <dependency>
527             <groupId>com.google.code.gson</groupId>
528             <artifactId>gson</artifactId>
529             <version>2.8.5</version>
530         </dependency>
531     </dependencies>
532
533     <reporting>
534         <plugins>
535             <plugin>
536                 <groupId>org.apache.maven.plugins</groupId>
537                 <artifactId>maven-javadoc-plugin</artifactId>
538                 <version>2.10.3</version>
539                 <configuration>
540                     <author>true</author>
541                     <breakiterator>true</breakiterator>
542                     <version>true</version>
543                     <links>
544                         <link>https://docs.oracle.com/javase/7/docs/api/</link>
545                         <link>https://tomcat.apache.org/tomcat-7.0-doc/jspapi/</link>
546                         <link>http://docs.oracle.com/javaee/7/api/</link>
547                     </links>
548                 </configuration>
549             </plugin>
550             <plugin>
551                 <groupId>org.apache.maven.plugins</groupId>
552                 <artifactId>maven-compiler-plugin</artifactId>
553                 <configuration>
554                     <source>1.8</source>
555                     <target>1.8</target>
556                 </configuration>
557             </plugin>
558         </plugins>
559     </reporting>
560
561     <profiles>
562         <profile>
563             <id>docker</id>
564             <build>
565                 <plugins>
566                     <plugin>
567                         <groupId>io.fabric8</groupId>
568                         <artifactId>docker-maven-plugin</artifactId>
569                         <version>0.19.1</version>
570                         <configuration>
571                             <verbose>true</verbose>
572                             <apiVersion>1.23</apiVersion>
573                             <registry>nexus3.onap.org:10003</registry>
574                             <images>
575                                 <!-- MUSIC War -->
576                                 <image>
577                                     <name>onap/music/music_sb</name>
578                                     <alias>docker_music</alias>
579                                     <build>
580                                         <cleanup>true</cleanup>
581                                         <tags>
582                                             <tag>${docker.tag}</tag>
583                                             <tag>${docker.latest.tag}</tag>
584                                         </tags>
585                                         <dockerFileDir>${project.basedir}/distribution/music</dockerFileDir>
586 <!--                                    <assembly>
587                                             <descriptorRef>artifact</descriptorRef>
588                                         </assembly>  -->
589                                     </build>
590                                 </image>
591                                 <!-- Cassandra -->
592                                 <image>
593                                     <name>onap/music/cassandra_3_11</name>
594                                     <alias>docker_cassandra_sec</alias>
595                                     <build>
596                                         <cleanup>true</cleanup>
597                                         <tags>
598                                             <tag>${docker.tag}</tag>
599                                             <tag>${docker.latest.tag}</tag>
600                                         </tags>
601                                         <dockerFileDir>${project.basedir}/distribution/cassandra</dockerFileDir>
602                                     </build>
603                                 </image>
604                                 <!-- Cassandra Job -->
605                                 <image>
606                                     <name>onap/music/cassandra_job</name>
607                                     <alias>docker_cassandra_job</alias>
608                                     <build>
609                                         <cleanup>true</cleanup>
610                                         <tags>
611                                             <tag>${docker.tag}</tag>
612                                             <tag>${docker.latest.tag}</tag>
613                                         </tags>
614                                         <dockerFileDir>${project.basedir}/distribution/cassandra_job</dockerFileDir>
615                                     </build>
616                                 </image>
617                                 <!-- Trigger -->
618                                 <image>
619                                     <name>onap/music/musictrigger</name>
620                                     <alias>docker_trigger</alias>
621                                     <build>
622                                         <cleanup>true</cleanup>
623                                         <tags>
624                                             <tag>${docker.tag}</tag>
625                                             <tag>${docker.latest.tag}</tag>
626                                         </tags>
627                                         <dockerFileDir>${project.basedir}/distribution/trigger</dockerFileDir>
628                                     </build>
629                                 </image>
630
631                                 <!-- Zookeeper -->
632                                 <!-- <image> <name>onap/music/zookeeper_music</name>
633                                     <alias>docker_zookeeper</alias> <build> <cleanup>true</cleanup> <tags> <tag>3.4-${timestamp}</tag>
634                                     <tag>3.4-latest</tag> </tags> <dockerFileDir>${project.basedir}/distribution/zookeeper</dockerFileDir>
635                                     </build> </image> -->
636                                 <!-- tomcat 8.5 -->
637                                 <!-- <image> <name>onap/music/tomcat_music</name>
638                                     <alias>docker_tomcat</alias> <build> <cleanup>true</cleanup> <tags> <tag>8.5-${timestamp}</tag>
639                                     <tag>8.5-latest</tag> </tags> <dockerFileDir>${project.basedir}/distribution/tomcat</dockerFileDir>
640                                     </build> </image>\ -->
641                             </images>
642                         </configuration>
643                         <executions>
644                             <execution>
645                                 <id>clean-images</id>
646                                 <phase>pre-clean</phase>
647                                 <goals>
648                                     <goal>remove</goal>
649                                 </goals>
650                                 <configuration>
651                                     <removeAll>true</removeAll>
652                                     <image>music</image>
653                                 </configuration>
654                             </execution>
655                             <execution>
656                                 <id>generate-images</id>
657                                 <phase>package</phase>
658                                 <goals>
659                                     <goal>build</goal>
660                                 </goals>
661                             </execution>
662                             <execution>
663                                 <id>push-images</id>
664                                 <phase>deploy</phase>
665                                 <goals>
666                                     <goal>push</goal>
667                                 </goals>
668                                 <configuration>
669                                     <image>onap/music/music</image>
670                                 </configuration>
671                             </execution>
672                         </executions>
673                     </plugin>
674                 </plugins>
675             </build>
676         </profile>
677         <profile> 
678               <id>default</id> 
679               <repositories> 
680                   <repository> 
681                     <id>nexus</id> 
682                     <name>attarch-releases</name> 
683                     <url>http://mavencentral.it.att.com:8084/nexus/content/repositories/attarch-releases</url> 
684                 </repository> 
685             </repositories> 
686           </profile>
687     </profiles>
688     <distributionManagement>
689         <repository>
690             <id>ecomp-releases</id>
691             <name>Release Repository</name>
692             <url>${nexusproxy}/${releaseNexusPath}</url>
693         </repository>
694         <snapshotRepository>
695             <id>ecomp-snapshots</id>
696             <name>Snapshot Repository</name>
697             <url>${nexusproxy}/${snapshotNexusPath}</url>
698         </snapshotRepository>
699         <!-- added for javadoc -->
700         <site>
701             <id>ecomp-site</id>
702             <url>dav:${nexusproxy}${sitePath}</url>
703         </site>
704     </distributionManagement>
705 </project>