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