Merge "Updated springboot to version 1.5.15"
[aai/sparky-be.git] / sparkybe-onap-application / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.springframework.boot</groupId>
7                 <artifactId>spring-boot-starter-parent</artifactId>
8                 <version>1.5.15.RELEASE</version>
9         </parent>
10
11         <groupId>org.onap.aai.sparky-be</groupId>
12         <artifactId>sparkybe-onap-application</artifactId>
13         <version>1.3.0-SNAPSHOT</version>
14         <packaging>jar</packaging>
15
16         <properties>
17                 <java.version>1.8</java.version>
18                 <version.jacoco.maven.plugin>0.7.9</version.jacoco.maven.plugin>
19                 <frontEndGroupdId>org.onap.aai</frontEndGroupdId>
20                 <frontEndArtifactId>sparky-fe</frontEndArtifactId>
21                 <frontEndVersion>1.3.0-SNAPSHOT</frontEndVersion>
22                 <serverPort>9517</serverPort>
23                 <sslport>8000</sslport>
24                 <nexusproxy>https://nexus.onap.org</nexusproxy>
25                 <camel-spring-boot.version>2.20.0</camel-spring-boot.version>
26                 <config-home>${basedir}/</config-home>
27                 <docker.location>${basedir}/target</docker.location>
28                 <docker.image.name>sparky-be</docker.image.name>
29                 <version.aai-schema>1.2.4</version.aai-schema>
30         <sitePath>/content/sites/site/org/onap/aai/sparky-be/${project.artifactId}/${project.version}</sitePath>
31                 <nexusproxy>https://nexus.onap.org</nexusproxy>
32         </properties>
33
34         <dependencyManagement>
35                 <dependencies>
36
37                         <!-- Camel BOM -->
38                         <dependency>
39                                 <groupId>org.apache.camel</groupId>
40                                 <artifactId>camel-spring-boot-dependencies</artifactId>
41                                 <version>${camel-spring-boot.version}</version>
42                                 <type>pom</type>
43                                 <scope>import</scope>
44                         </dependency>
45
46                         <dependency>
47                                 <groupId>ch.qos.logback</groupId>
48                                 <artifactId>logback-classic</artifactId>
49                                 <version>1.2.1</version>
50                         </dependency>
51
52  
53  
54                 </dependencies>
55
56         </dependencyManagement>
57
58         <dependencies>
59
60                 <!-- Spring dependencies -->
61                 <dependency>
62                         <groupId>org.springframework.boot</groupId>
63                         <artifactId>spring-boot-starter-web</artifactId>
64                 </dependency>
65
66                 <dependency>
67                         <groupId>org.springframework.boot</groupId>
68                         <artifactId>spring-boot-starter-actuator</artifactId>
69                 </dependency>
70
71                 <dependency>
72                         <groupId>org.apache.camel</groupId>
73                         <artifactId>camel-restlet</artifactId>
74                         <exclusions>
75                                 <exclusion>
76                                         <groupId>commons-logging</groupId>
77                                         <artifactId>commons-logging</artifactId>
78                                 </exclusion>
79                         </exclusions>
80                 </dependency>
81
82                 <dependency>
83                         <groupId>org.springframework.boot</groupId>
84                         <artifactId>spring-boot-starter-logging</artifactId>
85                         <exclusions>
86                                 <exclusion>
87                                         <groupId>ch.qos.logback</groupId>
88                                         <artifactId>logback-classic</artifactId>
89                                 </exclusion>
90                                 <exclusion>
91                                 <groupId>org.slf4j</groupId>
92                                 <artifactId>log4j-over-slf4j</artifactId>
93                                 </exclusion>
94                         </exclusions>
95                 </dependency>
96
97                 <dependency>
98                         <groupId>org.apache.camel</groupId>
99                         <artifactId>camel-servlet</artifactId>
100                         <exclusions>
101                                 <exclusion>
102                                         <groupId>commons-logging</groupId>
103                                         <artifactId>commons-logging</artifactId>
104                                 </exclusion>
105                         </exclusions>
106                 </dependency>
107
108                 <!-- Camel BOM -->
109                 <dependency>
110                         <groupId>org.apache.camel</groupId>
111                         <artifactId>camel-spring-boot-dependencies</artifactId>
112                         <version>${camel-spring-boot.version}</version>
113                         <type>pom</type>
114                         <scope>import</scope>
115                 </dependency>
116
117                 <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl -->
118                 <!-- <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId>
119                         </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId>
120                         </dependency> -->
121
122                 <!-- Camel -->
123                 <dependency>
124                         <groupId>org.apache.camel</groupId>
125                         <artifactId>camel-spring-boot-starter</artifactId>
126                 </dependency>
127
128                 <!-- https://mvnrepository.com/artifact/org.apache.camel/camel-restlet -->
129                 <dependency>
130                         <groupId>org.apache.camel</groupId>
131                         <artifactId>camel-restlet</artifactId>
132                 </dependency>
133
134                 <dependency>
135                         <groupId>commons-io</groupId>
136                         <artifactId>commons-io</artifactId>
137                 </dependency>
138
139                 <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-util -->
140                 <dependency>
141                         <groupId>org.eclipse.jetty</groupId>
142                         <artifactId>jetty-util</artifactId>
143                         <scope>provided</scope>
144                 </dependency>
145
146                 <dependency>
147                         <groupId>org.apache.camel</groupId>
148                         <artifactId>camel-servlet-starter</artifactId>
149                 </dependency>
150
151                 <dependency>
152                         <groupId>org.springframework.boot</groupId>
153                         <artifactId>spring-boot-starter-actuator</artifactId>
154                 </dependency>
155
156                 <dependency>
157                         <groupId>org.onap.aai.sparky-be</groupId>
158                         <artifactId>sparkybe-onap-service</artifactId>
159                         <version>1.3.0-SNAPSHOT</version>
160                 </dependency>
161
162
163
164
165
166
167                 <!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
168                 <dependency>
169                         <groupId>commons-cli</groupId>
170                         <artifactId>commons-cli</artifactId>
171                         <version>1.2</version>
172                 </dependency>
173
174                 <!-- <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId>
175                         </dependency> -->
176
177
178                 <!-- https://mvnrepository.com/artifact/org.apache.camel/camel-http-common -->
179                 <!-- <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-http</artifactId>
180                         <version>2.15.5</version> </dependency> <dependency> <groupId>abc.def</groupId>
181                         <artifactId>att-camel-dme2-servlet</artifactId> <version>2.15.5</version>
182                         <scope>system</scope> <systemPath>x:/222/att-camel-dme2-servlet-2.15.5.jar</systemPath>
183                         </dependency> <dependency> <groupId>abc.def</groupId> <artifactId>att-camel-static-content</artifactId>
184                         <version>2.11.2.1</version> <scope>system</scope> <systemPath>x:/222/att-camel-static-content-2.11.2.1.jar</systemPath>
185                         </dependency> -->
186
187                 <!-- Utility dependencies -->
188
189                 <dependency>
190                         <groupId>com.google.guava</groupId>
191                         <artifactId>guava</artifactId>
192                         <version>19.0</version>
193                 </dependency>
194
195                 <dependency>
196                         <groupId>org.onap.aai.logging-service</groupId>
197                         <artifactId>common-logging</artifactId>
198                         <version>1.2.2</version>
199                 </dependency>
200
201                 <dependency>
202                         <groupId>dom4j</groupId>
203                         <artifactId>dom4j</artifactId>
204                         <scope>provided</scope>
205                 </dependency>
206
207                 <dependency>
208                         <groupId>org.eclipse.persistence</groupId>
209                         <artifactId>eclipselink</artifactId>
210                         <version>2.6.2</version>
211                 </dependency>
212
213                 <dependency>
214                         <groupId>org.slf4j</groupId>
215                         <artifactId>slf4j-api</artifactId>
216                         <scope>provided</scope>
217                 </dependency>
218
219                 <dependency>
220                         <groupId>com.fasterxml.jackson.core</groupId>
221                         <artifactId>jackson-core</artifactId>
222                         <scope>provided</scope>
223                 </dependency>
224
225                 <dependency>
226                         <groupId>org.onap.aai.aai-common</groupId>
227                         <artifactId>aai-schema</artifactId>
228                         <version>${version.aai-schema}</version>
229                 </dependency>
230
231                 <dependency>
232                         <groupId>org.onap.aai</groupId>
233                         <artifactId>rest-client</artifactId>
234                         <version>1.3.0-SNAPSHOT</version>
235                 </dependency>
236
237                 <!-- https://mvnrepository.com/artifact/org.restlet.jee/org.restlet.ext.servlet -->
238                 <dependency>
239                         <groupId>org.restlet.jee</groupId>
240                         <artifactId>org.restlet.ext.servlet</artifactId>
241                         <version>2.1.1</version>
242                 </dependency>
243
244
245                 <dependency>
246                         <groupId>com.openpojo</groupId>
247                         <artifactId>openpojo</artifactId>
248                         <version>0.8.6</version>
249                 </dependency>
250
251                 <dependency>
252                         <groupId>com.google.code.gson</groupId>
253                         <artifactId>gson</artifactId>
254                         <scope>provided</scope>
255                 </dependency>
256
257
258                 <dependency>
259                         <groupId>org.json</groupId>
260                         <artifactId>json</artifactId>
261                         <scope>provided</scope>
262                 </dependency>
263
264                 <dependency>
265                         <groupId>com.fasterxml.jackson.core</groupId>
266                         <artifactId>jackson-databind</artifactId>
267                         <scope>provided</scope>
268                 </dependency>
269
270                 <dependency>
271                         <groupId>org.onap.portal.sdk</groupId>
272                         <artifactId>epsdk-fw</artifactId>
273                         <version>1.3.0 </version>
274                         <exclusions>
275                                 <exclusion>
276                                         <groupId>commons-logging</groupId>
277                                         <artifactId>commons-logging</artifactId>
278                                 </exclusion>
279                                 <exclusion>
280                                         <groupId>log4j</groupId>
281                                         <artifactId>log4j</artifactId>
282                                 </exclusion>
283                                 <exclusion>
284                                         <groupId>log4j</groupId>
285                                         <artifactId>apache-log4j-extras</artifactId>
286                                 </exclusion>
287                                 <exclusion>
288                                         <groupId>org.slf4j</groupId>
289                                         <artifactId>slf4j-log4j12</artifactId>
290                                 </exclusion>
291                         </exclusions>
292                 </dependency>
293
294                 <!-- Test dependencies -->
295
296                 <dependency>
297                         <groupId>org.mockito</groupId>
298                         <artifactId>mockito-all</artifactId>
299                         <version>1.10.19</version>
300                         <scope>test</scope>
301                 </dependency>
302
303                 <dependency>
304                         <groupId>org.powermock</groupId>
305                         <artifactId>powermock-module-junit4</artifactId>
306                         <version>1.6.2</version>
307                         <scope>test</scope>
308                 </dependency>
309                 <dependency>
310                         <groupId>org.powermock</groupId>
311                         <artifactId>powermock-api-mockito</artifactId>
312                         <version>1.6.2</version>
313                         <scope>test</scope>
314                 </dependency>
315                 <dependency>
316                         <groupId>org.powermock</groupId>
317                         <artifactId>powermock-module-javaagent</artifactId>
318                         <version>1.6.2</version>
319                         <scope>test</scope>
320                 </dependency>
321                 <dependency>
322                         <groupId>org.powermock</groupId>
323                         <artifactId>powermock-module-junit4-rule-agent</artifactId>
324                         <version>1.6.2</version>
325                         <scope>test</scope>
326                 </dependency>
327
328                 <dependency>
329                         <groupId>org.hamcrest</groupId>
330                         <artifactId>hamcrest-library</artifactId>
331                         <scope>test</scope>
332                 </dependency>
333
334         </dependencies>
335
336         <build>
337
338                 <pluginManagement>
339                         <plugins>
340
341
342                                 <plugin>
343                                         <groupId>org.apache.maven.plugins</groupId>
344                                         <artifactId>maven-compiler-plugin</artifactId>
345                                         <configuration>
346                                                 <source>1.8</source>
347                                                 <target>1.8</target>
348                                         </configuration>
349                                 </plugin>
350
351                                 <plugin>
352                                         <groupId>org.apache.maven.plugins</groupId>
353                                         <artifactId>maven-resources-plugin</artifactId>
354                                         <version>2.7</version>
355                                         <executions>
356                                                 <execution>
357                                                         <id>copy-docker-file</id>
358                                                         <phase>package</phase>
359                                                         <goals>
360                                                                 <goal>copy-resources</goal>
361                                                         </goals>
362                                                         <configuration>
363                                                                 <outputDirectory>target</outputDirectory>
364                                                                 <overwrite>true</overwrite>
365                                                                 <resources>
366                                                                         <resource>
367                                                                                 <directory>${basedir}/src/main/docker</directory>
368                                                                                 <filtering>true</filtering>
369                                                                                 <includes>
370                                                                                         <include>**/*</include>
371                                                                                 </includes>
372                                                                         </resource>
373                                                                         <resource>
374                                                                                 <directory>${basedir}/src/main/scripts/</directory>
375                                                                         </resource>
376                                                                 </resources>
377                                                         </configuration>
378                                                 </execution>
379                                         </executions>
380                                 </plugin>
381
382                         </plugins>
383
384                 </pluginManagement>
385
386                 <plugins>
387                         <plugin>
388                                 <groupId>org.springframework.boot</groupId>
389                                 <artifactId>spring-boot-maven-plugin</artifactId>
390                                 <configuration>
391                                         <folders>
392                                                 <folder>
393                                                         ${CONFIG_HOME}/portal/
394                                                 </folder>
395                                         </folders>
396                                 </configuration>
397                         </plugin>
398
399                         <plugin>
400                                 <groupId>org.apache.maven.plugins</groupId>
401                                 <artifactId>maven-resources-plugin</artifactId>
402                                 <version>2.7</version>
403                                 <executions>
404                                         <execution>
405                                                 <id>copy-docker-file-to-target</id>
406                                                 <phase>package</phase>
407                                                 <goals>
408                                                         <goal>copy-resources</goal>
409                                                 </goals>
410                                                 <configuration>
411                                                         <outputDirectory>target</outputDirectory>
412                                                         <overwrite>true</overwrite>
413                                                         <resources>
414                                                                 <resource>
415                                                                         <directory>${basedir}/src/main/docker</directory>
416                                                                         <filtering>true</filtering>
417                                                                         <includes>
418                                                                                 <include>**/*</include>
419                                                                         </includes>
420                                                                 </resource>
421                                                         </resources>
422                                                 </configuration>
423                                         </execution>
424                                 </executions>
425                         </plugin>
426
427                         <plugin>
428                                 <groupId>org.apache.maven.plugins</groupId>
429                                 <artifactId>maven-resources-plugin</artifactId>
430                                 <version>2.7</version>
431                                 <executions>
432                                         <execution>
433                                                 <id>copy-scripts-to-target</id>
434                                                 <phase>package</phase>
435                                                 <goals>
436                                                         <goal>copy-resources</goal>
437                                                 </goals>
438                                                 <configuration>
439                                                         <outputDirectory>target/scripts</outputDirectory>
440                                                         <overwrite>true</overwrite>
441                                                         <resources>
442                                                                 <resource>
443                                                                         <directory>${basedir}/src/main/scripts</directory>
444                                                                         <filtering>true</filtering>
445                                                                         <includes>
446                                                                                 <include>**/*</include>
447                                                                         </includes>
448                                                                 </resource>
449                                                         </resources>
450                                                 </configuration>
451                                         </execution>
452                                 </executions>
453                         </plugin>
454
455                         <plugin>
456                                 <groupId>org.apache.maven.plugins</groupId>
457                                 <artifactId>maven-resources-plugin</artifactId>
458                                 <executions>
459                                         <execution>
460                                                 <id>copy-config-to-target</id>
461                                                 <phase>package</phase>
462                                                 <goals>
463                                                         <goal>copy-resources</goal>
464                                                 </goals>
465                                                 <configuration>
466                                                         <outputDirectory>target/config</outputDirectory>
467                                                         <overwrite>true</overwrite>
468                                                         <resources>
469                                                                 <resource>
470                                                                         <directory>${basedir}/config</directory>
471                                                                         <filtering>true</filtering>
472                                                                         <includes>
473                                                                                 <include>**/*</include>
474                                                                         </includes>
475                                                                         <excludes>
476                                                                                 <exclude>**/auth/*</exclude>
477                                                                         </excludes>
478                                                                 </resource>
479                                                         </resources>
480                                                 </configuration>
481                                         </execution>
482                                 </executions>
483                         </plugin>
484
485
486                         <plugin>
487                                 <groupId>org.apache.maven.plugins</groupId>
488                                 <artifactId>maven-dependency-plugin</artifactId>
489                                 <version>3.0.0</version>
490                                 <executions>
491                                         <execution>
492                                                 <id>copy-war-to-target</id>
493                                                 <phase>install</phase>
494                                                 <goals>
495                                                         <goal>unpack</goal>
496                                                 </goals>
497                                                 <configuration>
498                                                         <artifactItems>
499                                                                 <artifactItem>
500                                                                         <groupId>${frontEndGroupdId}</groupId>
501                                                                         <artifactId>${frontEndArtifactId}</artifactId>
502                                                                         <version>${frontEndVersion}</version>
503                                                                         <type>war</type>
504                                                                         <outputDirectory>${basedir}/target/static/services/aai/webapp/</outputDirectory>
505                                                                 </artifactItem>
506                                                         </artifactItems>
507                                                 </configuration>
508                                         </execution>
509                                 </executions>
510                         </plugin>
511
512                         <plugin>
513                                 <groupId>org.jacoco</groupId>
514                                 <artifactId>jacoco-maven-plugin</artifactId>
515                                 <version>${version.jacoco.maven.plugin}</version>
516                                 <executions>
517                                         <execution>
518                                                 <id>prepare-agent</id>
519                                                 <goals>
520                                                         <goal>prepare-agent</goal>
521                                                 </goals>
522                                         </execution>
523                                         <execution>
524                                                 <id>report</id>
525                                                 <phase>package</phase>
526                                                 <goals>
527                                                         <goal>report</goal>
528                                                 </goals>
529                                         </execution>
530                                 </executions>
531                         </plugin>
532
533                         <plugin>
534                                 <groupId>org.codehaus.mojo</groupId>
535                                 <artifactId>cobertura-maven-plugin</artifactId>
536                                 <executions>
537                                         <execution>
538                                                 <phase />
539                                         </execution>
540                                 </executions>
541                         </plugin>
542
543                         <plugin>
544                                 <groupId>org.apache.maven.plugins</groupId>
545                                 <artifactId>maven-site-plugin</artifactId>
546                                 <configuration>
547                                         <reportPlugins>
548                                                 <plugin>
549                                                         <groupId>org.apache.maven.plugins</groupId>
550                                                         <artifactId>maven-checkstyle-plugin</artifactId>
551                                                         <version>2.17</version>
552                                                         <reportSets>
553                                                                 <reportSet>
554                                                                         <reports>
555                                                                                 <report>checkstyle</report>
556                                                                         </reports>
557                                                                 </reportSet>
558                                                         </reportSets>
559                                                 </plugin>
560                                         </reportPlugins>
561                                 </configuration>
562                         </plugin>
563
564                         <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId>
565                                 <version>2.7</version> <executions> <execution> <id>copy-docker-file</id>
566                                 <phase>package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration>
567                                 <outputDirectory>target</outputDirectory> <overwrite>true</overwrite> <resources>
568                                 <resource> <directory>${basedir}/src/main/docker</directory> <filtering>true</filtering>
569                                 <includes> <include>**/*</include> </includes> </resource> <resource> <directory>${basedir}/src/main/scripts/</directory>
570                                 </resource> </resources> </configuration> </execution> </executions> </plugin> -->
571                         <plugin>
572                                 <groupId>com.spotify</groupId>
573                                 <artifactId>docker-maven-plugin</artifactId>
574                                 <version>0.4.11</version>
575                                 <configuration>
576                                         <verbose>true</verbose>
577                                         <serverId>docker-hub</serverId>
578                                         <imageName>${docker.push.registry}/onap/${docker.image.name}</imageName>
579                                         <dockerDirectory>${docker.location}</dockerDirectory>
580                                         <imageTags>
581                                                 <imageTag>latest</imageTag>
582                                         </imageTags>
583                                         <forceTags>true</forceTags>
584                                 </configuration>
585                         </plugin>
586                         <plugin>
587                           <groupId>org.apache.maven.plugins</groupId>
588                           <artifactId>maven-deploy-plugin</artifactId>
589                           <version>2.8.2</version>
590                           <executions>
591                             <execution>
592                               <id>default-deploy</id>
593                               <phase>none</phase>
594                             </execution>
595                           </executions>
596                         </plugin>
597                         <plugin>
598                           <groupId>org.sonatype.plugins</groupId>
599                           <artifactId>nexus-staging-maven-plugin</artifactId>
600                           <version>1.6.7</version>
601                           <extensions>true</extensions>
602                           <configuration>
603                             <nexusUrl>${nexusproxy}</nexusUrl>
604                             <stagingProfileId>176c31dfe190a</stagingProfileId>
605                             <serverId>ecomp-staging</serverId>
606                           </configuration>
607                         </plugin>
608                         
609                         <!-- license plugin -->
610                         <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId>
611                                 <version>3.0</version> <configuration> <header>LICENSE</header> <includes>
612                                 <include>src/main/java/**</include> </includes> </configuration> <executions>
613                                 <execution> <goals> <goal>format</goal> </goals> <phase>process-sources</phase>
614                                 </execution> </executions> </plugin> -->
615                                 
616               <plugin>
617                                 <groupId>org.apache.maven.plugins</groupId>
618                                 <artifactId>maven-dependency-plugin</artifactId>
619                                 <executions>
620                                         <execution>
621                                                 <id>unpack</id>
622                                                 <phase>prepare-package</phase>
623                                                 <goals>
624                                                         <goal>unpack</goal>
625                                                 </goals>
626                                                 <configuration>
627                                                         <artifactItems>
628                                                                 <artifactItem>
629                                                                         <groupId>org.onap.aai.aai-common</groupId>
630                                                                         <artifactId>aai-schema</artifactId>
631                                                                         <version>${version.aai-schema}</version>
632                                                                         <type>jar</type>
633                                                                         <includes>oxm/</includes>
634                                                                         <outputDirectory>${project.build.directory}/</outputDirectory>
635                                                                 </artifactItem>
636                                                         </artifactItems>
637                                                 </configuration>
638                                         </execution>
639                                 </executions>
640                         </plugin>                               
641                                 
642                 </plugins>
643         </build>
644
645     <distributionManagement>
646       <repository>
647          <id>ecomp-releases</id>
648          <name>ECOMP Release Repository</name>
649          <url>${nexusproxy}/content/repositories/releases/</url>
650       </repository>
651       <snapshotRepository>
652          <id>ecomp-snapshots</id>
653          <name>ECOMP Snapshot Repository</name>
654          <url>${nexusproxy}/content/repositories/snapshots/</url>
655       </snapshotRepository>
656    </distributionManagement>
657
658     <repositories>
659         <repository>
660             <id>central</id>
661             <name>Maven 2 repository 2</name>
662             <url>http://repo2.maven.org/maven2/</url>
663         </repository>
664         <repository>
665             <id>ecomp-releases</id>
666             <name>ECOMP Release Repository</name>
667             <url>${nexusproxy}/content/repositories/releases/</url>
668         </repository>
669         <repository>
670             <id>ecomp-staging</id>
671             <name>ECOMP Staging Repository</name>
672             <url>${nexusproxy}/content/repositories/staging/</url>
673         </repository>
674         <repository>
675             <id>ecomp-snapshots</id>
676             <name>ECOMP Snapshot Repository</name>
677             <url>${nexusproxy}/content/repositories/snapshots/</url>
678         </repository>
679     </repositories>
680 </project>