Update to spring-boot 1.5.18
[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.18.RELEASE</version>
9         </parent>
10
11         <groupId>org.onap.aai.sparky-be</groupId>
12         <artifactId>sparkybe-onap-application</artifactId>
13         <version>1.3.2-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</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.3.0</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.3</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.2-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>26.0-jre</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>org.dom4j</groupId>
204                         <artifactId>dom4j</artifactId>
205                         <scope>provided</scope>
206                         <version>2.1.1</version>
207                 </dependency>
208
209                 <dependency>
210                         <groupId>org.eclipse.persistence</groupId>
211                         <artifactId>eclipselink</artifactId>
212                         <version>2.6.2</version>
213                 </dependency>
214
215                 <dependency>
216                         <groupId>org.slf4j</groupId>
217                         <artifactId>slf4j-api</artifactId>
218                         <scope>provided</scope>
219                 </dependency>
220
221                 <dependency>
222                         <groupId>com.fasterxml.jackson.core</groupId>
223                         <artifactId>jackson-core</artifactId>
224                         <scope>provided</scope>
225                 </dependency>
226
227                 <dependency>
228                         <groupId>org.onap.aai.aai-common</groupId>
229                         <artifactId>aai-schema</artifactId>
230                         <version>${version.aai-schema}</version>
231                 </dependency>
232
233                 <dependency>
234                         <groupId>org.onap.aai</groupId>
235                         <artifactId>rest-client</artifactId>
236                         <version>1.3.0</version>
237                 </dependency>
238
239                 <!-- https://mvnrepository.com/artifact/org.restlet.jee/org.restlet.ext.servlet -->
240                 <dependency>
241                         <groupId>org.restlet.jee</groupId>
242                         <artifactId>org.restlet.ext.servlet</artifactId>
243                         <version>2.1.1</version>
244                 </dependency>
245
246
247                 <dependency>
248                         <groupId>com.openpojo</groupId>
249                         <artifactId>openpojo</artifactId>
250                         <version>0.8.6</version>
251                 </dependency>
252
253                 <dependency>
254                         <groupId>com.google.code.gson</groupId>
255                         <artifactId>gson</artifactId>
256                         <scope>provided</scope>
257                 </dependency>
258
259
260                 <dependency>
261                         <groupId>org.json</groupId>
262                         <artifactId>json</artifactId>
263                         <scope>provided</scope>
264                 </dependency>
265
266                 <dependency>
267                         <groupId>com.fasterxml.jackson.core</groupId>
268                         <artifactId>jackson-databind</artifactId>
269                         <scope>provided</scope>
270                 </dependency>
271
272                 <dependency>
273                         <groupId>org.onap.portal.sdk</groupId>
274                         <artifactId>epsdk-fw</artifactId>
275                         <version>1.3.0 </version>
276                         <exclusions>
277                                 <exclusion>
278                                         <groupId>commons-logging</groupId>
279                                         <artifactId>commons-logging</artifactId>
280                                 </exclusion>
281                                 <exclusion>
282                                         <groupId>log4j</groupId>
283                                         <artifactId>log4j</artifactId>
284                                 </exclusion>
285                                 <exclusion>
286                                         <groupId>log4j</groupId>
287                                         <artifactId>apache-log4j-extras</artifactId>
288                                 </exclusion>
289                                 <exclusion>
290                                         <groupId>org.slf4j</groupId>
291                                         <artifactId>slf4j-log4j12</artifactId>
292                                 </exclusion>
293                         </exclusions>
294                 </dependency>
295
296                 <!-- Test dependencies -->
297
298                 <dependency>
299                         <groupId>org.mockito</groupId>
300                         <artifactId>mockito-all</artifactId>
301                         <version>1.10.19</version>
302                         <scope>test</scope>
303                 </dependency>
304
305                 <dependency>
306                         <groupId>org.powermock</groupId>
307                         <artifactId>powermock-module-junit4</artifactId>
308                         <version>1.6.2</version>
309                         <scope>test</scope>
310                 </dependency>
311                 <dependency>
312                         <groupId>org.powermock</groupId>
313                         <artifactId>powermock-api-mockito</artifactId>
314                         <version>1.6.2</version>
315                         <scope>test</scope>
316                 </dependency>
317                 <dependency>
318                         <groupId>org.powermock</groupId>
319                         <artifactId>powermock-module-javaagent</artifactId>
320                         <version>1.6.2</version>
321                         <scope>test</scope>
322                 </dependency>
323                 <dependency>
324                         <groupId>org.powermock</groupId>
325                         <artifactId>powermock-module-junit4-rule-agent</artifactId>
326                         <version>1.6.2</version>
327                         <scope>test</scope>
328                 </dependency>
329
330                 <dependency>
331                         <groupId>org.hamcrest</groupId>
332                         <artifactId>hamcrest-library</artifactId>
333                         <scope>test</scope>
334                 </dependency>
335
336         </dependencies>
337
338         <build>
339
340                 <pluginManagement>
341                         <plugins>
342
343
344                                 <plugin>
345                                         <groupId>org.apache.maven.plugins</groupId>
346                                         <artifactId>maven-compiler-plugin</artifactId>
347                                         <configuration>
348                                                 <source>1.8</source>
349                                                 <target>1.8</target>
350                                         </configuration>
351                                 </plugin>
352
353                                 <plugin>
354                                         <groupId>org.apache.maven.plugins</groupId>
355                                         <artifactId>maven-resources-plugin</artifactId>
356                                         <version>2.7</version>
357                                         <executions>
358                                                 <execution>
359                                                         <id>copy-docker-file</id>
360                                                         <phase>package</phase>
361                                                         <goals>
362                                                                 <goal>copy-resources</goal>
363                                                         </goals>
364                                                         <configuration>
365                                                                 <outputDirectory>target</outputDirectory>
366                                                                 <overwrite>true</overwrite>
367                                                                 <resources>
368                                                                         <resource>
369                                                                                 <directory>${basedir}/src/main/docker</directory>
370                                                                                 <filtering>true</filtering>
371                                                                                 <includes>
372                                                                                         <include>**/*</include>
373                                                                                 </includes>
374                                                                         </resource>
375                                                                         <resource>
376                                                                                 <directory>${basedir}/src/main/scripts/</directory>
377                                                                         </resource>
378                                                                 </resources>
379                                                         </configuration>
380                                                 </execution>
381                                         </executions>
382                                 </plugin>
383
384                         </plugins>
385
386                 </pluginManagement>
387
388                 <plugins>
389                         <plugin>
390                                 <groupId>org.springframework.boot</groupId>
391                                 <artifactId>spring-boot-maven-plugin</artifactId>
392                                 <configuration>
393                                         <folders>
394                                                 <folder>
395                                                         ${CONFIG_HOME}/portal/
396                                                 </folder>
397                                         </folders>
398                                 </configuration>
399                         </plugin>
400
401                         <plugin>
402                                 <groupId>org.apache.maven.plugins</groupId>
403                                 <artifactId>maven-resources-plugin</artifactId>
404                                 <version>2.7</version>
405                                 <executions>
406                                         <execution>
407                                                 <id>copy-docker-file-to-target</id>
408                                                 <phase>package</phase>
409                                                 <goals>
410                                                         <goal>copy-resources</goal>
411                                                 </goals>
412                                                 <configuration>
413                                                         <outputDirectory>target</outputDirectory>
414                                                         <overwrite>true</overwrite>
415                                                         <resources>
416                                                                 <resource>
417                                                                         <directory>${basedir}/src/main/docker</directory>
418                                                                         <filtering>true</filtering>
419                                                                         <includes>
420                                                                                 <include>**/*</include>
421                                                                         </includes>
422                                                                 </resource>
423                                                         </resources>
424                                                 </configuration>
425                                         </execution>
426                                 </executions>
427                         </plugin>
428
429                         <plugin>
430                                 <groupId>org.apache.maven.plugins</groupId>
431                                 <artifactId>maven-resources-plugin</artifactId>
432                                 <version>2.7</version>
433                                 <executions>
434                                         <execution>
435                                                 <id>copy-scripts-to-target</id>
436                                                 <phase>package</phase>
437                                                 <goals>
438                                                         <goal>copy-resources</goal>
439                                                 </goals>
440                                                 <configuration>
441                                                         <outputDirectory>target/scripts</outputDirectory>
442                                                         <overwrite>true</overwrite>
443                                                         <resources>
444                                                                 <resource>
445                                                                         <directory>${basedir}/src/main/scripts</directory>
446                                                                         <filtering>true</filtering>
447                                                                         <includes>
448                                                                                 <include>**/*</include>
449                                                                         </includes>
450                                                                 </resource>
451                                                         </resources>
452                                                 </configuration>
453                                         </execution>
454                                 </executions>
455                         </plugin>
456
457                         <plugin>
458                                 <groupId>org.apache.maven.plugins</groupId>
459                                 <artifactId>maven-resources-plugin</artifactId>
460                                 <executions>
461                                         <execution>
462                                                 <id>copy-config-to-target</id>
463                                                 <phase>package</phase>
464                                                 <goals>
465                                                         <goal>copy-resources</goal>
466                                                 </goals>
467                                                 <configuration>
468                                                         <outputDirectory>target/config</outputDirectory>
469                                                         <overwrite>true</overwrite>
470                                                         <resources>
471                                                                 <resource>
472                                                                         <directory>${basedir}/config</directory>
473                                                                         <filtering>true</filtering>
474                                                                         <includes>
475                                                                                 <include>**/*</include>
476                                                                         </includes>
477                                                                         <excludes>
478                                                                                 <exclude>**/auth/*</exclude>
479                                                                         </excludes>
480                                                                 </resource>
481                                                         </resources>
482                                                 </configuration>
483                                         </execution>
484                                 </executions>
485                         </plugin>
486
487
488                         <plugin>
489                                 <groupId>org.apache.maven.plugins</groupId>
490                                 <artifactId>maven-dependency-plugin</artifactId>
491                                 <version>3.0.0</version>
492                                 <executions>
493                                         <execution>
494                                                 <id>copy-war-to-target</id>
495                                                 <phase>install</phase>
496                                                 <goals>
497                                                         <goal>unpack</goal>
498                                                 </goals>
499                                                 <configuration>
500                                                         <artifactItems>
501                                                                 <artifactItem>
502                                                                         <groupId>${frontEndGroupdId}</groupId>
503                                                                         <artifactId>${frontEndArtifactId}</artifactId>
504                                                                         <version>${frontEndVersion}</version>
505                                                                         <type>war</type>
506                                                                         <outputDirectory>${basedir}/target/static/services/aai/webapp/</outputDirectory>
507                                                                 </artifactItem>
508                                                         </artifactItems>
509                                                 </configuration>
510                                         </execution>
511                                 </executions>
512                         </plugin>
513
514                         <plugin>
515                                 <groupId>org.jacoco</groupId>
516                                 <artifactId>jacoco-maven-plugin</artifactId>
517                                 <version>${version.jacoco.maven.plugin}</version>
518                                 <executions>
519                                         <execution>
520                                                 <id>prepare-agent</id>
521                                                 <goals>
522                                                         <goal>prepare-agent</goal>
523                                                 </goals>
524                                         </execution>
525                                         <execution>
526                                                 <id>report</id>
527                                                 <phase>package</phase>
528                                                 <goals>
529                                                         <goal>report</goal>
530                                                 </goals>
531                                         </execution>
532                                 </executions>
533                         </plugin>
534
535                         <plugin>
536                                 <groupId>org.codehaus.mojo</groupId>
537                                 <artifactId>cobertura-maven-plugin</artifactId>
538                                 <executions>
539                                         <execution>
540                                                 <phase />
541                                         </execution>
542                                 </executions>
543                         </plugin>
544
545                         <plugin>
546                                 <groupId>org.apache.maven.plugins</groupId>
547                                 <artifactId>maven-site-plugin</artifactId>
548                                 <configuration>
549                                         <reportPlugins>
550                                                 <plugin>
551                                                         <groupId>org.apache.maven.plugins</groupId>
552                                                         <artifactId>maven-checkstyle-plugin</artifactId>
553                                                         <version>2.17</version>
554                                                         <reportSets>
555                                                                 <reportSet>
556                                                                         <reports>
557                                                                                 <report>checkstyle</report>
558                                                                         </reports>
559                                                                 </reportSet>
560                                                         </reportSets>
561                                                 </plugin>
562                                         </reportPlugins>
563                                 </configuration>
564                         </plugin>
565
566                         <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId>
567                                 <version>2.7</version> <executions> <execution> <id>copy-docker-file</id>
568                                 <phase>package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration>
569                                 <outputDirectory>target</outputDirectory> <overwrite>true</overwrite> <resources>
570                                 <resource> <directory>${basedir}/src/main/docker</directory> <filtering>true</filtering>
571                                 <includes> <include>**/*</include> </includes> </resource> <resource> <directory>${basedir}/src/main/scripts/</directory>
572                                 </resource> </resources> </configuration> </execution> </executions> </plugin> -->
573                         <plugin>
574                                 <groupId>com.spotify</groupId>
575                                 <artifactId>docker-maven-plugin</artifactId>
576                                 <version>0.4.11</version>
577                                 <configuration>
578                                         <verbose>true</verbose>
579                                         <serverId>docker-hub</serverId>
580                                         <imageName>${docker.push.registry}/onap/${docker.image.name}</imageName>
581                                         <dockerDirectory>${docker.location}</dockerDirectory>
582                                         <imageTags>
583                                                 <imageTag>latest</imageTag>
584                                         </imageTags>
585                                         <forceTags>true</forceTags>
586                                 </configuration>
587                         </plugin>
588                         <plugin>
589                           <groupId>org.apache.maven.plugins</groupId>
590                           <artifactId>maven-deploy-plugin</artifactId>
591                           <version>2.8.2</version>
592                           <executions>
593                             <execution>
594                               <id>default-deploy</id>
595                               <phase>none</phase>
596                             </execution>
597                           </executions>
598                         </plugin>
599                         <plugin>
600                           <groupId>org.sonatype.plugins</groupId>
601                           <artifactId>nexus-staging-maven-plugin</artifactId>
602                           <version>1.6.7</version>
603                           <extensions>true</extensions>
604                           <configuration>
605                             <nexusUrl>${nexusproxy}</nexusUrl>
606                             <stagingProfileId>176c31dfe190a</stagingProfileId>
607                             <serverId>ecomp-staging</serverId>
608                           </configuration>
609                         </plugin>
610                         
611                         <!-- license plugin -->
612                         <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId>
613                                 <version>3.0</version> <configuration> <header>LICENSE</header> <includes>
614                                 <include>src/main/java/**</include> </includes> </configuration> <executions>
615                                 <execution> <goals> <goal>format</goal> </goals> <phase>process-sources</phase>
616                                 </execution> </executions> </plugin> -->
617
618        <plugin>
619                                 <groupId>org.apache.maven.plugins</groupId>
620                                 <artifactId>maven-dependency-plugin</artifactId>
621                                 <executions>
622                                         <execution>
623                                                 <id>unpack</id>
624                                                 <phase>prepare-package</phase>
625                                                 <goals>
626                                                         <goal>unpack</goal>
627                                                 </goals>
628                                                 <configuration>
629                                                         <artifactItems>
630                                                                 <artifactItem>
631                                                                         <groupId>org.onap.aai.aai-common</groupId>
632                                                                         <artifactId>aai-schema</artifactId>
633                                                                         <version>${version.aai-schema}</version>
634                                                                         <type>jar</type>
635                                                                         <includes>/${shemaUnpackVersion}/oxm/</includes>
636                                                                         <outputDirectory>${project.build.directory}/oxm</outputDirectory>
637                                                                 </artifactItem>
638                                                         </artifactItems>
639                                                 </configuration>
640                                         </execution>
641                                 </executions>
642                         </plugin>
643
644                 </plugins>
645         </build>
646
647     <distributionManagement>
648       <repository>
649          <id>ecomp-releases</id>
650          <name>ECOMP Release Repository</name>
651          <url>${nexusproxy}/content/repositories/releases/</url>
652       </repository>
653       <snapshotRepository>
654          <id>ecomp-snapshots</id>
655          <name>ECOMP Snapshot Repository</name>
656          <url>${nexusproxy}/content/repositories/snapshots/</url>
657       </snapshotRepository>
658    </distributionManagement>
659
660     <repositories>
661         <repository>
662             <id>central</id>
663             <name>Maven 2 repository 2</name>
664             <url>http://repo2.maven.org/maven2/</url>
665         </repository>
666         <repository>
667             <id>ecomp-releases</id>
668             <name>ECOMP Release Repository</name>
669             <url>${nexusproxy}/content/repositories/releases/</url>
670         </repository>
671         <repository>
672             <id>ecomp-staging</id>
673             <name>ECOMP Staging Repository</name>
674             <url>${nexusproxy}/content/repositories/staging/</url>
675         </repository>
676         <repository>
677             <id>ecomp-snapshots</id>
678             <name>ECOMP Snapshot Repository</name>
679             <url>${nexusproxy}/content/repositories/snapshots/</url>
680         </repository>
681     </repositories>
682 </project>