blob: 5f4326e57249240b7fc6ac20bff9b4b8f269e7ef [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Gautam Shah3de22e12018-04-21 16:18:37 +05302 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>
Michael Lando451a3402017-02-19 10:28:42 +02004
Gautam Shah3de22e12018-04-21 16:18:37 +05305 <groupId>org.openecomp.sdc</groupId>
6 <artifactId>sdc-main</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +03007 <version>1.3.0-SNAPSHOT</version>
Gautam Shah3de22e12018-04-21 16:18:37 +05308 <packaging>pom</packaging>
9 <name>sdc</name>
10 <properties>
Michael Lando451a3402017-02-19 10:28:42 +020011
Gautam Shah3de22e12018-04-21 16:18:37 +053012 <maven.compiler.source>1.8</maven.compiler.source>
13 <maven.compiler.target>1.8</maven.compiler.target>
Tal Gitelman51d50f02017-12-10 18:55:03 +020014
Gautam Shah3de22e12018-04-21 16:18:37 +053015 <!-- ==================== -->
16 <!-- Generic properties -->
17 <!-- ==================== -->
18 <build.type>-SNAPSHOT</build.type>
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 <sprint.number>74</sprint.number>
Michael Lando451a3402017-02-19 10:28:42 +020021
Gautam Shah3de22e12018-04-21 16:18:37 +053022 <!-- 3rd parties versions -->
23 <lang3.version>3.3.2</lang3.version>
24 <guava.version>18.0</guava.version>
25 <titan.version>1.0.0</titan.version>
26 <sdc.titan.version>1.2.0</sdc.titan.version>
Michael Lando5b593492018-07-29 16:13:45 +030027 <spring.version>4.3.17.RELEASE</spring.version>
Gautam Shah3de22e12018-04-21 16:18:37 +053028 <spring.security.version>3.2.3.RELEASE</spring.security.version>
29 <spring.ldap.version>2.0.1.RELEASE</spring.ldap.version>
Michael Lando5b593492018-07-29 16:13:45 +030030 <jersey-bom.version>2.27</jersey-bom.version>
31 <servlet-api.version>3.1.0</servlet-api.version>
32 <wire-mock.version>2.18.0</wire-mock.version>
Gautam Shah3de22e12018-04-21 16:18:37 +053033 <ecomp.version>1.1.0</ecomp.version>
Michael Lando451a3402017-02-19 10:28:42 +020034
Gautam Shah3de22e12018-04-21 16:18:37 +053035 <!-- Elastic Search mapper (reference the elastic search version actually). -->
36 <elastic-search.version>2.4.0</elastic-search.version>
37 <catalog-artifacts.version>1.0.0-SNAPSHOT</catalog-artifacts.version>
38 <catalog-builders.version>1.0.0-SNAPSHOT</catalog-builders.version>
Tal Gitelmanc63a3402018-08-05 17:16:15 +030039 <jetty.version>9.3.20.v20170531</jetty.version>
Michael Lando451a3402017-02-19 10:28:42 +020040
Gautam Shah3de22e12018-04-21 16:18:37 +053041 <!-- JSON and YAML Parsing -->
Michael Lando5b593492018-07-29 16:13:45 +030042 <jackson.version>2.8.10</jackson.version>
43 <jackson-annotations.version>2.8.0</jackson-annotations.version>
Michael Lando451a3402017-02-19 10:28:42 +020044
Gautam Shah3de22e12018-04-21 16:18:37 +053045 <!-- Yaml for properties -->
46 <snakeyaml.version>1.14</snakeyaml.version>
Michael Lando5b593492018-07-29 16:13:45 +030047 <functionaljava.version>4.7</functionaljava.version>
Michael Lando12368942018-05-13 19:19:46 +030048 <httpclient.version>4.5.3</httpclient.version>
Gautam Shah3de22e12018-04-21 16:18:37 +053049 <httpcore.version>4.4.1</httpcore.version>
50 <json-simple.version>1.1</json-simple.version>
AviZi280f8012017-06-09 02:39:56 +030051
Gautam Shah3de22e12018-04-21 16:18:37 +053052 <!-- Logging start -->
53 <!-- logback -->
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +020054 <logback.version>1.2.3</logback.version>
Michael Lando5b593492018-07-29 16:13:45 +030055 <slf4j-api.version>1.7.25</slf4j-api.version>
AviZi280f8012017-06-09 02:39:56 +030056 <commons-codec>1.10</commons-codec>
57 <commons-logging>1.2</commons-logging>
Gautam Shah3de22e12018-04-21 16:18:37 +053058 <groovy.version>2.4.13</groovy.version>
59 <janino.version>3.0.6</janino.version>
Michael Lando3c3c8332017-07-20 01:29:49 +030060
Gautam Shah3de22e12018-04-21 16:18:37 +053061 <!-- aspects -->
62 <jcabi.version>0.20.1</jcabi.version>
63 <aspectjrt.version>1.8.4</aspectjrt.version>
64 <aspectj.version>1.7.4</aspectj.version>
65 <jcabi.plugin.version>0.13.2</jcabi.plugin.version>
Michael Lando3c3c8332017-07-20 01:29:49 +030066
Gautam Shah3de22e12018-04-21 16:18:37 +053067 <!-- Logging end -->
68 <!-- System Metrics -->
69 <sigar.version>1.6.4</sigar.version>
Michael Lando451a3402017-02-19 10:28:42 +020070
Gautam Shah3de22e12018-04-21 16:18:37 +053071 <regex.version>3.0.3</regex.version>
Michael Lando451a3402017-02-19 10:28:42 +020072
Gautam Shah3de22e12018-04-21 16:18:37 +053073 <!--GSON-->
74 <gson.version>2.3.1</gson.version>
AviZi280f8012017-06-09 02:39:56 +030075
76 <!--listen to file changes-->
77 <commons-jci-core.version>1.1</commons-jci-core.version>
78
Gautam Shah3de22e12018-04-21 16:18:37 +053079 <!--TESTING-->
Michael Lando5b593492018-07-29 16:13:45 +030080 <mockito.version>2.18.3</mockito.version>
81 <jmockit.version>1.33</jmockit.version>
Gautam Shah3de22e12018-04-21 16:18:37 +053082 <junit.version>4.12</junit.version>
Michael Lando5b593492018-07-29 16:13:45 +030083 <assertj.version>3.10.0</assertj.version>
Gautam Shah3de22e12018-04-21 16:18:37 +053084 <testng.version>6.9.10</testng.version>
85 <extentreports.version>3.0.3</extentreports.version>
Michael Lando5b593492018-07-29 16:13:45 +030086 <cucumber.version>2.4.0</cucumber.version>
Piotr Darosz00814512018-06-18 12:46:35 +020087 <bean-matchers.version>0.11</bean-matchers.version>
Michael Landoa5445102018-03-04 14:53:33 +020088
Gautam Shah3de22e12018-04-21 16:18:37 +053089 <!-- parser-->
Michael Lando5b593492018-07-29 16:13:45 +030090 <sdc-tosca-parser.version>1.3.5</sdc-tosca-parser.version>
Michael Landoa5445102018-03-04 14:53:33 +020091
Michael Lando5b593492018-07-29 16:13:45 +030092 <!-- sonar -->
Gautam Shah3de22e12018-04-21 16:18:37 +053093 <sonar.language>java</sonar.language>
Michael Lando734d54d2018-07-30 12:31:21 +030094 <sonar.sourceEncoding>${project.build.sourceEncoding}</sonar.sourceEncoding>
95 <sonar.projectBaseDir>${project.basedir}</sonar.projectBaseDir>
96 <sonar.branch>${project.version}</sonar.branch>
ml636rd0214c72017-02-22 11:36:55 +020097
Gautam Shah3de22e12018-04-21 16:18:37 +053098 <!--cassandra -->
99 <cassandra.driver.version>3.0.0</cassandra.driver.version>
100 <!-- maven central (Nexus) -->
101 <nexus.id.release>nexus</nexus.id.release>
102 <nexus.id.snapshot>nexus</nexus.id.snapshot>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200103
Gautam Shah3de22e12018-04-21 16:18:37 +0530104 <!--nexus-->
105 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
106 <sitePath>/content/sites/site/org/openecomp/sdc/${project.version}</sitePath>
107 <staging.profile.id>176c31dfe190a</staging.profile.id>
108 <!--maven-->
109 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
110 <!--io.fabric8-->
111 <fabric8.version>0.23.0</fabric8.version>
112 <!--docker tags-->
113 <docker.tag>${project.version}-${maven.build.timestamp}</docker.tag>
114 <!--<docker.latest.tag>${project.version}-latest</docker.latest.tag>-->
Yuli Shlosberg0875ce02018-01-25 13:53:36 +0200115
Gautam Shah3de22e12018-04-21 16:18:37 +0530116 </properties>
Michael Lando451a3402017-02-19 10:28:42 +0200117
Gautam Shah3de22e12018-04-21 16:18:37 +0530118 <dependencyManagement>
119 <dependencies>
120 <dependency>
121 <groupId>org.glassfish.jersey.ext</groupId>
122 <artifactId>jersey-bean-validation</artifactId>
123 <version>${jersey-bom.version}</version>
124 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200125
Gautam Shah3de22e12018-04-21 16:18:37 +0530126 <dependency>
127 <groupId>org.glassfish.hk2.external</groupId>
128 <artifactId>asm-all-repackaged</artifactId>
129 <version>2.4.0</version>
130 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200131
Gautam Shah3de22e12018-04-21 16:18:37 +0530132 <dependency>
133 <groupId>org.assertj</groupId>
134 <artifactId>assertj-core</artifactId>
135 <version>${assertj.version}</version>
136 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200137
Gautam Shah3de22e12018-04-21 16:18:37 +0530138 <dependency>
139 <groupId>org.mockito</groupId>
140 <artifactId>mockito-core</artifactId>
141 <version>${mockito.version}</version>
142 </dependency>
Tal Gitelmanb2533e52018-06-06 14:46:07 +0300143
Yuli Shlosberge4669312018-04-26 15:48:26 +0300144 <dependency>
145 <groupId>org.jmockit</groupId>
146 <artifactId>jmockit</artifactId>
147 <version>${jmockit.version}</version>
148 </dependency>
149
Michael Landoa5445102018-03-04 14:53:33 +0200150
Gautam Shah3de22e12018-04-21 16:18:37 +0530151 <dependency>
152 <groupId>com.github.tomakehurst</groupId>
Michael Lando5b593492018-07-29 16:13:45 +0300153 <artifactId>wiremock-standalone</artifactId>
Gautam Shah3de22e12018-04-21 16:18:37 +0530154 <version>${wire-mock.version}</version>
155 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200156
157 <dependency>
158 <groupId>io.cucumber</groupId>
159 <artifactId>cucumber-java</artifactId>
160 <version>${cucumber.version}</version>
161 </dependency>
162
163 <dependency>
164 <groupId>io.cucumber</groupId>
165 <artifactId>cucumber-junit</artifactId>
166 <version>${cucumber.version}</version>
167 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300168
169 <dependency>
170 <groupId>org.apache.commons</groupId>
171 <artifactId>commons-lang3</artifactId>
172 <version>${lang3.version}</version>
173 </dependency>
Gautam Shah3de22e12018-04-21 16:18:37 +0530174 </dependencies>
175 </dependencyManagement>
Michael Landoa5445102018-03-04 14:53:33 +0200176
Gautam Shah3de22e12018-04-21 16:18:37 +0530177 <reporting>
178 <plugins>
179 <plugin>
180 <groupId>org.apache.maven.plugins</groupId>
181 <artifactId>maven-javadoc-plugin</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300182 <version>3.0.0</version>
Gautam Shah3de22e12018-04-21 16:18:37 +0530183 <configuration>
184 <failOnError>false</failOnError>
185 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
186 <docletArtifact>
187 <groupId>org.umlgraph</groupId>
188 <artifactId>umlgraph</artifactId>
189 <version>5.6</version>
190 </docletArtifact>
191 <additionalparam>-views</additionalparam>
192 <useStandardDocletOptions>true</useStandardDocletOptions>
193 </configuration>
194 </plugin>
195 </plugins>
196 </reporting>
Michael Lando451a3402017-02-19 10:28:42 +0200197
Gautam Shah3de22e12018-04-21 16:18:37 +0530198 <build>
199 <pluginManagement>
200 <plugins>
Michael Lando451a3402017-02-19 10:28:42 +0200201
Gautam Shah3de22e12018-04-21 16:18:37 +0530202 <plugin>
203 <groupId>org.apache.maven.plugins</groupId>
204 <artifactId>maven-site-plugin</artifactId>
205 <version>3.4</version>
206 <dependencies>
207 <dependency>
208 <groupId>org.apache.maven.wagon</groupId>
209 <artifactId>wagon-webdav-jackrabbit</artifactId>
210 <version>2.10</version>
211 </dependency>
212 </dependencies>
213 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200214
215
Gautam Shah3de22e12018-04-21 16:18:37 +0530216 <plugin>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-assembly-plugin</artifactId>
219 <version>3.1.0</version>
220 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200221
Gautam Shah3de22e12018-04-21 16:18:37 +0530222 <plugin>
223 <groupId>org.codehaus.mojo</groupId>
224 <artifactId>exec-maven-plugin</artifactId>
225 <version>1.4.0</version>
226 </plugin>
227 <plugin>
228 <groupId>org.sonarsource.scanner.maven</groupId>
229 <artifactId>sonar-maven-plugin</artifactId>
230 <version>3.0.2</version>
231 </plugin>
232 </plugins>
233 </pluginManagement>
Michael Lando451a3402017-02-19 10:28:42 +0200234
Gautam Shah3de22e12018-04-21 16:18:37 +0530235 <plugins>
Michael Lando546f7cf2017-09-23 00:05:17 +0300236
Gautam Shah3de22e12018-04-21 16:18:37 +0530237 <!-- Staging Plugin -->
238 <plugin>
239 <groupId>org.sonatype.plugins</groupId>
240 <artifactId>nexus-staging-maven-plugin</artifactId>
241 <version>1.6.7</version>
242 <extensions>true</extensions>
243 <configuration>
244 <nexusUrl>${nexus.proxy}</nexusUrl>
245 <stagingProfileId>${staging.profile.id}</stagingProfileId>
246 <serverId>ecomp-staging</serverId>
247 </configuration>
248 </plugin>
Michael Lando546f7cf2017-09-23 00:05:17 +0300249
Gautam Shah3de22e12018-04-21 16:18:37 +0530250 <!-- plugin for parsing the project version -->
251 <plugin>
252 <groupId>org.codehaus.mojo</groupId>
253 <artifactId>build-helper-maven-plugin</artifactId>
254 <version>1.8</version>
255 <executions>
256 <execution>
257 <id>parse-version</id>
258 <goals>
259 <goal>parse-version</goal>
260 </goals>
261 </execution>
262 </executions>
263 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200264
Gautam Shah3de22e12018-04-21 16:18:37 +0530265 <!-- Java Code Coverage -->
266 <plugin>
267 <groupId>org.jacoco</groupId>
268 <artifactId>jacoco-maven-plugin</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300269 <version>0.8.1</version>
Gautam Shah3de22e12018-04-21 16:18:37 +0530270 <executions>
271 <execution>
272 <id>default-prepare-agent</id>
273 <goals>
274 <goal>prepare-agent</goal>
275 </goals>
276 </execution>
277 <execution>
278 <id>default-report</id>
279 <goals>
280 <goal>report</goal>
281 </goals>
282 </execution>
283 </executions>
284 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200285
Gautam Shah3de22e12018-04-21 16:18:37 +0530286 <plugin>
287 <groupId>org.apache.maven.plugins</groupId>
288 <artifactId>maven-site-plugin</artifactId>
289 <dependencies>
290 <dependency>
291 <groupId>org.apache.maven.wagon</groupId>
292 <artifactId>wagon-webdav-jackrabbit</artifactId>
293 <version>2.10</version>
294 </dependency>
295 </dependencies>
296 </plugin>
Michael Landoa5445102018-03-04 14:53:33 +0200297
Gautam Shah3de22e12018-04-21 16:18:37 +0530298 <!-- Set the deployment repositories properties. -->
299 <plugin>
300 <groupId>org.codehaus.gmaven</groupId>
301 <artifactId>gmaven-plugin</artifactId>
302 <version>1.4</version>
303 <executions>
304 <execution>
305 <inherited>false</inherited>
306 <phase>integration-test</phase>
307 <goals>
308 <goal>execute</goal>
309 </goals>
310 <configuration>
311 <source>
312 pom.properties['deploy.url'] =
Michael Lando5b593492018-07-29 16:13:45 +0300313 pom.version.contains('-SNAPSHOT') ?
314 project.distributionManagement.snapshotRepository.url :
315 project.distributionManagement.repository.url;
Gautam Shah3de22e12018-04-21 16:18:37 +0530316 pom.properties['repo.id'] = pom.version.contains('-SNAPSHOT') ?
Michael Lando5b593492018-07-29 16:13:45 +0300317 project.distributionManagement.snapshotRepository.id :
318 project.distributionManagement.repository.id;
Gautam Shah3de22e12018-04-21 16:18:37 +0530319 </source>
320 </configuration>
321 </execution>
322 </executions>
323 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200324
Gautam Shah3de22e12018-04-21 16:18:37 +0530325 <!-- license plugin -->
326 <plugin>
327 <groupId>org.codehaus.mojo</groupId>
328 <artifactId>license-maven-plugin</artifactId>
329 <version>1.10</version>
330 <configuration>
331 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
332 <processStartTag>============LICENSE_START=======================================================</processStartTag>
333 <processEndTag>============LICENSE_END=========================================================</processEndTag>
334 <sectionDelimiter>================================================================================</sectionDelimiter>
Michael Lando5b593492018-07-29 16:13:45 +0300335 <sectionDelimiter>================================================================================</sectionDelimiter>
Gautam Shah3de22e12018-04-21 16:18:37 +0530336 <licenseName>apache_v2</licenseName>
337 <inceptionYear>2017</inceptionYear>
338 <organizationName>AT&amp;T Intellectual Property. All rights
339 reserved.
340 </organizationName>
341 <projectName>SDC</projectName>
342 <canUpdateCopyright>true</canUpdateCopyright>
343 <canUpdateDescription>true</canUpdateDescription>
344 <canUpdateLicense>true</canUpdateLicense>
345 <emptyLineAfterHeader>true</emptyLineAfterHeader>
346 <verbose>false</verbose>
347 <includes>
348 <include>**/*.java</include>
349 <include>**/*.ts</include>
350 </includes>
351 <excludes>
352 <exclude>**/*.d.ts</exclude>
353 </excludes>
354 <roots>
355 <root>src</root>
356 <root>app</root>
357 <root>server-mock</root>
358 <root>typings</root>
359 </roots>
360 <extraExtensions>
361 <ts>java</ts>
362 </extraExtensions>
363 </configuration>
364 <executions>
365 <execution>
366 <id>first</id>
367 <goals>
368 <goal>update-file-header</goal>
369 </goals>
370 <!--phase>process-sources</phase -->
371 </execution>
372 </executions>
373 </plugin>
374 </plugins>
375 </build>
AviZi280f8012017-06-09 02:39:56 +0300376
Gautam Shah3de22e12018-04-21 16:18:37 +0530377 <profiles>
378 <profile>
379 <id>all</id>
380 <activation>
381 <activeByDefault>true</activeByDefault>
382 </activation>
383 <modules>
384 <module>build-tools</module>
Gautam Shah3de22e12018-04-21 16:18:37 +0530385 <module>security-utils</module>
386 <module>common-app-api</module>
Michael Landoa6c79102018-04-30 21:54:40 +0300387 <module>onboarding</module>
388 <module>services/activity-spec</module>
Gautam Shah3de22e12018-04-21 16:18:37 +0530389 <module>common-be</module>
390 <module>catalog-dao</module>
391 <module>catalog-model</module>
392 <module>catalog-be</module>
393 <module>asdctool</module>
394 <module>catalog-ui</module>
395 <module>catalog-fe</module>
396 <module>test-apis-ci</module>
397 <module>ui-ci</module>
398 <module>sdc-os-chef</module>
399 <module>utils/webseal-simulator</module>
400 </modules>
Michael Lando451a3402017-02-19 10:28:42 +0200401
Gautam Shah3de22e12018-04-21 16:18:37 +0530402 </profile>
AviZi280f8012017-06-09 02:39:56 +0300403
Gautam Shah3de22e12018-04-21 16:18:37 +0530404 <profile>
405 <id>catalog</id>
406 <activation>
407 <activeByDefault>false</activeByDefault>
408 </activation>
409 <modules>
410 <module>security-utils</module>
411 <module>common-app-api</module>
412 <module>common-be</module>
413 <module>catalog-dao</module>
414 <module>catalog-model</module>
415 <module>catalog-be</module>
416 <module>asdctool</module>
417 <module>catalog-ui</module>
418 <module>catalog-fe</module>
419 <module>test-apis-ci</module>
420 <module>ui-ci</module>
421 </modules>
sheetalm297209b2018-02-20 19:06:27 +0530422
Gautam Shah3de22e12018-04-21 16:18:37 +0530423 <properties>
424 <ecomp.version>1.2.7</ecomp.version>
Gautam Shah3de22e12018-04-21 16:18:37 +0530425 <sdc-tosca-parser.version>1.1.32</sdc-tosca-parser.version>
426 </properties>
427 </profile>
AviZi280f8012017-06-09 02:39:56 +0300428
Gautam Shah3de22e12018-04-21 16:18:37 +0530429 <profile>
430 <id>onboarding</id>
431 <activation>
432 <activeByDefault>false</activeByDefault>
433 </activation>
434 <modules>
435 <module>build-tools</module>
436 <module>onboarding</module>
437 </modules>
438 </profile>
AviZi280f8012017-06-09 02:39:56 +0300439
Gautam Shah3de22e12018-04-21 16:18:37 +0530440 </profiles>
441
442 <repositories>
443 <!-- LF repositories -->
444 <repository>
445 <id>ecomp-releases</id>
446 <name>Release Repository</name>
447 <url>${nexus.proxy}/content/repositories/releases/</url>
448 </repository>
449 <repository>
450 <id>ecomp-snapshots</id>
451 <name>Snapshots Repository</name>
452 <url>${nexus.proxy}/content/repositories/snapshots/</url>
453 </repository>
454 <repository>
455 <id>ecomp-public</id>
456 <name>Public Repository</name>
457 <url>${nexus.proxy}/content/repositories/public/</url>
458 </repository>
459 <!-- LF repositories END-->
460 </repositories>
461
462 <distributionManagement>
463 <repository>
464 <id>ecomp-releases</id>
465 <name>Release Repository</name>
466 <url>${nexus.proxy}/content/repositories/releases/</url>
467 </repository>
468 <snapshotRepository>
469 <id>ecomp-snapshots</id>
470 <name>Snapshot Repository</name>
471 <url>${nexus.proxy}/content/repositories/snapshots/</url>
472 </snapshotRepository>
473 <site>
474 <id>ecomp-site</id>
475 <url>dav:${nexus.proxy}${sitePath}</url>
476 </site>
477 </distributionManagement>
Tal Gitelmanc63a3402018-08-05 17:16:15 +0300478</project>