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