Adding repositories to distributionManagement
[appc.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>odlparent</artifactId>
7         <version>1.6.2-Beryllium-SR2</version>
8         <relativePath>../../../../../opendaylight/odlparent</relativePath>
9     </parent>
10
11
12     <modelVersion>4.0.0</modelVersion>
13     <packaging>pom</packaging>
14     <groupId>org.openecomp.appc</groupId>
15     <artifactId>appc</artifactId>
16     <version>1.1.0-SNAPSHOT</version>
17     <name>APP-C</name>
18     <description>Construct the Application Controller component for the ECOMP project.</description>
19     <inceptionYear>2015-07-20</inceptionYear>
20     <organization>
21         <name>OpenECOMP</name>
22     </organization>
23
24
25     <!-- ================================================================================== -->
26     <!-- Configuration properties -->
27     <!-- ================================================================================== -->
28     <properties>
29         <!-- VERSIONS -->
30         <!-- OpenDaylight Versions -->
31         <features-mdsal.version>2.0.2-Beryllium-SR2</features-mdsal.version>
32         <broker-mdsal.version>1.3.2-Beryllium-SR2</broker-mdsal.version>
33         <odl.controller.config.api.version>0.4.2-Beryllium-SR2</odl.controller.config.api.version>
34         <odl.karaf.empty.distro.version>${odl.version}</odl.karaf.empty.distro.version>
35         <odl.ietf-inet-types.version>2010.09.24.8.2-Beryllium-SR2</odl.ietf-inet-types.version>
36         <odl.ietf-yang-types.version>2010.09.24.8.2-Beryllium-SR2</odl.ietf-yang-types.version>
37         <odl.yang.jmx.generator.version>0.4.2-Beryllium-SR2</odl.yang.jmx.generator.version>
38         <odl.version>1.6.2-Beryllium-SR2</odl.version>
39         <odl.yangtools.version>0.8.2-Beryllium-SR2</odl.yangtools.version>
40         <odl.mdsal.version>1.3.2-Beryllium-SR2</odl.mdsal.version>
41
42         <!-- OPENECOMP SDNC versions -->
43         <sdnctl.sli.version>1.0.0-SNAPSHOT</sdnctl.sli.version>
44         <sdnctl.dblib.version>1.0.0-SNAPSHOT</sdnctl.dblib.version>
45         <sdnctl.aai.service.version>1.0.0-SNAPSHOT</sdnctl.aai.service.version>
46
47         <cdp.pal.version>0.0.1</cdp.pal.version>
48         <eelf.version>0.0.1</eelf.version>
49         <eelf.maven.plugin.version>0.0.1</eelf.maven.plugin.version>
50         <cadi-version>1.3.0</cadi-version>
51         <inno-version>1.2.11</inno-version>
52         <dme2-version>3.1.200</dme2-version>
53         <bundle.plugin.version>2.5.0</bundle.plugin.version>
54         <java.version.source>1.7</java.version.source>
55         <java.version.target>1.7</java.version.target>
56         <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
57         <equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version>
58         <apache.httpcomponents.version>4.4</apache.httpcomponents.version>
59         <antlr.version>4.5.1</antlr.version>
60         <mysql.connector.version>5.1.39</mysql.connector.version>
61
62         <!-- SONAR -->
63         <sonar.language>java</sonar.language>
64         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
65         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
66         <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
67         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
68         <sonar.projectVersion>${project.version}</sonar.projectVersion>
69
70         <salGeneratorPath>target/generated-sources/yang-gen-sal</salGeneratorPath>
71         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
72         <!-- ADDING TO SUPPORT APPC-PROVIDER-MODEL yang-gen-sal FOLDER GENERATION -->
73         <yang.file.directory>src/main/yang</yang.file.directory>
74         <features.file>features.xml</features.file>
75         <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
76         <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
77         <checkstyle.skip>true</checkstyle.skip>
78     </properties>
79
80
81     <!-- ================================================================================== -->
82     <!-- Javadoc Generation Plugin -->
83     <!-- ================================================================================== -->
84     <reporting>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-javadoc-plugin</artifactId>
89                 <version>2.10.4</version>
90                 <configuration>
91                     <excludePackageNames>org.openecomp.sdnc</excludePackageNames>
92                     <failOnError>false</failOnError>
93                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
94                     <docletArtifact>
95                         <groupId>org.umlgraph</groupId>
96                         <artifactId>umlgraph</artifactId>
97                         <version>5.6</version>
98                     </docletArtifact>
99                     <additionalparam>-views</additionalparam>
100                     <useStandardDocletOptions>true</useStandardDocletOptions>
101                 </configuration>
102             </plugin>
103         </plugins>
104     </reporting>
105
106
107     <!-- ================================================================================== -->
108     <!-- Distribution Management Sites -->
109     <!-- ================================================================================== -->
110     <distributionManagement>
111         <!-- This site is used for Javadocs -->
112         <site>
113             <id>ecomp-site</id>
114             <url>dav:https://nexus.onap.org/content/sites/site/org/onap/appc/${project.version}</url>
115         </site>
116         <repository>
117             <id>ecomp-releases</id>
118             <name>openecomp-repository-releases</name>
119             <url>https://nexus.onap.org/content/repositories/releases/</url>
120         </repository>
121         <snapshotRepository>
122             <id>ecomp-snapshots</id>
123             <name>openecomp-repository-snapshots</name>
124             <url>https://nexus.onap.org/content/repositories/snapshots/</url>
125         </snapshotRepository>
126     </distributionManagement>
127
128
129     <!-- ================================================================================== -->
130     <!-- Define plugin repositories -->
131     <!-- ================================================================================== -->
132     <pluginRepositories>
133         <pluginRepository>
134             <id>opendaylight-mirror</id>
135             <name>opendaylight-mirror</name>
136             <url>https://nexus.opendaylight.org/content/repositories/public/</url>
137             <releases>
138                 <enabled>true</enabled>
139                 <updatePolicy>never</updatePolicy>
140             </releases>
141             <snapshots>
142                 <enabled>false</enabled>
143             </snapshots>
144         </pluginRepository>
145         <pluginRepository>
146             <id>opendaylight-snapshot</id>
147             <name>opendaylight-snapshot</name>
148             <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
149             <releases>
150                 <enabled>false</enabled>
151             </releases>
152             <snapshots>
153                 <enabled>true</enabled>
154             </snapshots>
155         </pluginRepository>
156         <!-- Black Duck plugin dependencies -->
157         <pluginRepository>
158             <id>JCenter</id>
159             <name>JCenter Repository</name>
160             <url>http://jcenter.bintray.com</url>
161         </pluginRepository>
162         <pluginRepository>
163             <id>Restlet</id>
164             <name>Restlet Repository</name>
165             <url>http://maven.restlet.com</url>
166         </pluginRepository>
167     </pluginRepositories>
168
169
170     <!-- ================================================================================== -->
171     <!-- Define project-wide dependencies -->
172     <!-- ================================================================================== -->
173     <dependencyManagement>
174         <dependencies>
175             <!-- ODL -->
176             <dependency>
177                 <groupId>org.opendaylight.controller</groupId>
178                 <artifactId>config-api</artifactId>
179                 <version>${odl.controller.config.api.version}</version>
180             </dependency>
181             <dependency>
182                 <groupId>org.opendaylight.controller</groupId>
183                 <artifactId>sal-binding-config</artifactId>
184                 <version>${odl.mdsal.version}</version>
185             </dependency>
186             <dependency>
187                 <groupId>org.opendaylight.controller</groupId>
188                 <artifactId>sal-binding-api</artifactId>
189                 <version>${odl.mdsal.version}</version>
190             </dependency>
191             <dependency>
192                 <groupId>org.opendaylight.controller</groupId>
193                 <artifactId>sal-test-model</artifactId>
194                 <version>${odl.mdsal.version}</version>
195             </dependency>
196             <dependency>
197                 <groupId>org.opendaylight.netconf</groupId>
198                 <artifactId>sal-rest-connector</artifactId>
199                 <version>${odl.mdsal.version}</version>
200             </dependency>
201             <dependency>
202                 <groupId>org.opendaylight.controller</groupId>
203                 <artifactId>sal-binding-broker-impl</artifactId>
204                 <version>${odl.mdsal.version}</version>
205             </dependency>
206             <dependency>
207                 <groupId>org.opendaylight.controller</groupId>
208                 <artifactId>sal-common-util</artifactId>
209                 <version>${odl.mdsal.version}</version>
210             </dependency>
211             <dependency>
212                 <groupId>org.opendaylight.mdsal</groupId>
213                 <artifactId>yang-binding</artifactId>
214                 <version>${odl.yangtools.version}</version>
215             </dependency>
216             <dependency>
217                 <groupId>org.opendaylight.yangtools</groupId>
218                 <artifactId>yang-common</artifactId>
219                 <version>${odl.yangtools.version}</version>
220             </dependency>
221             <dependency>
222                 <groupId>org.opendaylight.controller</groupId>
223                 <artifactId>features-mdsal</artifactId>
224                 <version>1.3.2-Beryllium-SR2</version>
225                 <classifier>features</classifier>
226                 <type>xml</type>
227             </dependency>
228             <dependency>
229                 <groupId>org.opendaylight.mdsal</groupId>
230                 <artifactId>features-mdsal</artifactId>
231                 <version>2.0.2-Beryllium-SR2</version>
232                 <classifier>features</classifier>
233                 <type>xml</type>
234             </dependency>
235             <dependency>
236                 <groupId>org.opendaylight.controller</groupId>
237                 <artifactId>opendaylight-karaf-empty</artifactId>
238                 <version>${odl.karaf.empty.distro.version}</version>
239                 <type>zip</type>
240             </dependency>
241             <!-- CURRENTLY DOES NOT EXIST IN 3.0. Replacement? -->
242             <!-- Required for launching the feature tests -->
243             <!-- <dependency> -->
244             <!-- <groupId>org.opendaylight.yangtools</groupId> -->
245             <!-- <artifactId>features-test</artifactId> -->
246             <!-- <version>${odl.yangtools.version}</version> -->
247             <!-- <scope>test</scope> -->
248             <!-- </dependency> -->
249
250             <!-- YANG tools -->
251             <dependency>
252                 <groupId>org.opendaylight.yangtools</groupId>
253                 <artifactId>features-yangtools</artifactId>
254                 <version>${odl.yangtools.version}</version>
255                 <classifier>features</classifier>
256                 <type>xml</type>
257             </dependency>
258             <!-- SDNC -->
259             <dependency>
260                 <groupId>org.openecomp.sdnc.core</groupId>
261                 <artifactId>sli-common</artifactId>
262                 <version>${sdnctl.sli.version}</version>
263             </dependency>
264             <dependency>
265                 <groupId>org.openecomp.sdnc.core</groupId>
266                 <artifactId>sli-provider</artifactId>
267                 <version>${sdnctl.sli.version}</version>
268             </dependency>
269             <!-- dblib -->
270             <dependency>
271                 <groupId>org.openecomp.sdnc.core</groupId>
272                 <artifactId>dblib-provider</artifactId>
273                 <version>${sdnctl.dblib.version}</version>
274             </dependency>
275             <!-- A&AI service provider dependency override in order to use 
276                 a stable version -->
277             <dependency>
278                 <groupId>org.openecomp.sdnc.adaptors</groupId>
279                 <artifactId>aai-service-provider</artifactId>
280                 <version>${sdnctl.aai.service.version}</version>
281             </dependency>
282             <!-- APPC -->
283             <dependency>
284                 <groupId>org.openecomp.appc</groupId>
285                 <artifactId>appc-controller-features</artifactId>
286                 <classifier>features</classifier>
287                 <type>xml</type>
288                 <version>${project.version}</version>
289             </dependency>
290             <dependency>
291                 <groupId>org.openecomp.appc</groupId>
292                 <artifactId>appc-controller-model</artifactId>
293                 <version>${project.version}</version>
294             </dependency>
295             <dependency>
296                 <groupId>org.openecomp.appc</groupId>
297                 <artifactId>appc-controller-bundle</artifactId>
298                 <version>${project.version}</version>
299                 <classifier>config</classifier>
300                 <type>xml</type>
301             </dependency>
302             <dependency>
303                 <groupId>org.openecomp.appc</groupId>
304                 <artifactId>appc-controller-bundle</artifactId>
305                 <version>${project.version}</version>
306             </dependency>
307             <!-- OTHER -->
308             <dependency>
309                 <groupId>equinoxSDK381</groupId>
310                 <artifactId>org.eclipse.osgi</artifactId>
311                 <version>${equinox.osgi.version}</version>
312             </dependency>
313             <dependency>
314                 <groupId>org.apache.commons</groupId>
315                 <artifactId>commons-lang3</artifactId>
316                 <version>${commons.lang3.version}</version>
317             </dependency>
318             <dependency>
319                 <groupId>junit</groupId>
320                 <artifactId>junit</artifactId>
321                 <version>4.12</version>
322                 <scope>test</scope>
323             </dependency>
324             <dependency>
325                 <groupId>ch.qos.logback</groupId>
326                 <artifactId>logback-core</artifactId>
327                 <version>1.1.1</version>
328                 <scope>compile</scope>
329             </dependency>
330             <dependency>
331                 <groupId>ch.qos.logback</groupId>
332                 <artifactId>logback-classic</artifactId>
333                 <version>1.1.1</version>
334                 <scope>compile</scope>
335             </dependency>
336             <dependency>
337                 <groupId>org.slf4j</groupId>
338                 <artifactId>slf4j-api</artifactId>
339                 <version>1.7.12</version>
340             </dependency>
341             <dependency>
342                 <groupId>commons-lang</groupId>
343                 <artifactId>commons-lang</artifactId>
344                 <version>2.6</version>
345             </dependency>
346             <dependency>
347                 <groupId>org.apache.sshd</groupId>
348                 <artifactId>sshd-core</artifactId>
349                 <version>0.12.0</version>
350             </dependency>
351             <dependency>
352                 <groupId>org.mockito</groupId>
353                 <artifactId>mockito-core</artifactId>
354                 <version>1.10.19</version>
355                 <scope>test</scope>
356             </dependency>
357             <dependency>
358                 <groupId>com.att.cdp</groupId>
359                 <artifactId>cdp-pal-common</artifactId>
360                 <version>${cdp.pal.version}</version>
361             </dependency>
362             <dependency>
363                 <groupId>com.att.cdp</groupId>
364                 <artifactId>cdp-pal-openstack</artifactId>
365                 <version>${cdp.pal.version}</version>
366             </dependency>
367             <dependency>
368                 <groupId>com.att.authz</groupId>
369                 <artifactId>authz-client</artifactId>
370                 <version>2.3</version>
371             </dependency>
372             <!-- EELF logging framework -->
373             <dependency>
374                 <groupId>com.att.eelf</groupId>
375                 <artifactId>eelf-core</artifactId>
376                 <version>${eelf.version}</version>
377             </dependency>
378         </dependencies>
379     </dependencyManagement>
380
381
382     <!-- ================================================================================== -->
383     <!-- Define common plugins and make them available for all modules -->
384     <!-- ================================================================================== -->
385     <build>
386         <pluginManagement>
387             <plugins>
388                 <!--maven staging plugin-->
389                 <plugin>
390                     <groupId>org.sonatype.plugins</groupId>
391                     <artifactId>nexus-staging-maven-plugin</artifactId>
392                     <version>1.6.7</version>
393                     <extensions>true</extensions>
394                     <configuration>
395                         <nexusUrl>https://nexus.onap.org/content/repositories/staging/</nexusUrl>
396                         <stagingProfileId>176c31dfe190a</stagingProfileId>
397                         <serverId>ecomp-staging</serverId>
398                     </configuration>
399                 </plugin>
400                 <!-- Define the site plugin to generate documentation -->
401                 <plugin>
402                     <groupId>org.apache.maven.plugins</groupId>
403                     <artifactId>maven-site-plugin</artifactId>
404                     <version>3.4</version>
405                     <dependencies>
406                         <!-- add support for ssh/scp -->
407                         <dependency>
408                             <groupId>org.apache.maven.wagon</groupId>
409                             <artifactId>wagon-ssh</artifactId>
410                             <version>1.0</version>
411                         </dependency>
412                     </dependencies>
413                 </plugin>
414                 <!-- Define the compiler plugin -->
415                 <plugin>
416                     <groupId>org.apache.maven.plugins</groupId>
417                     <artifactId>maven-compiler-plugin</artifactId>
418                     <version>${maven.compile.plugin.version}</version>
419                     <configuration>
420                         <source>${java.version.source}</source>
421                         <target>${java.version.target}</target>
422                     </configuration>
423                 </plugin>
424                 <!-- Define the javadoc plugin -->
425                 <plugin>
426                     <groupId>org.apache.maven.plugins</groupId>
427                     <artifactId>maven-javadoc-plugin</artifactId>
428                     <version>2.10</version>
429                     <configuration>
430                         <excludePackageNames>org.opendaylight.*:org.openecomp.sdnc</excludePackageNames>
431                     </configuration>
432                 </plugin>
433                 <!-- Define the source plugin -->
434                 <plugin>
435                     <artifactId>maven-source-plugin</artifactId>
436                     <version>2.1.1</version>
437                 </plugin>
438                 <!-- Resources plugin -->
439                 <plugin>
440                     <groupId>org.apache.maven.plugins</groupId>
441                     <artifactId>maven-resources-plugin</artifactId>
442                     <version>2.6</version>
443                     <executions>
444                         <execution>
445                             <id>filter</id>
446                             <goals>
447                                 <goal>resources</goal>
448                             </goals>
449                             <phase>generate-resources</phase>
450                         </execution>
451                     </executions>
452                 </plugin>
453                 <plugin>
454                     <artifactId>maven-release-plugin</artifactId>
455                     <version>2.5.2</version>
456                     <configuration>
457                         <goals>-s ${mvn.settings} deploy</goals>
458                     </configuration>
459                 </plugin>
460                 <plugin>
461                     <artifactId>maven-assembly-plugin</artifactId>
462                     <version>2.5.5</version>
463                 </plugin>
464                 <plugin>
465                     <groupId>org.apache.maven.plugins</groupId>
466                     <artifactId>maven-deploy-plugin</artifactId>
467                     <version>2.8.1</version>
468                 </plugin>
469                 <plugin>
470                     <groupId>org.apache.maven.plugins</groupId>
471                     <artifactId>maven-dependency-plugin</artifactId>
472                     <version>2.10</version>
473                 </plugin>
474                 <!-- Maven surefire plugin for testing -->
475                 <plugin>
476                     <artifactId>maven-surefire-plugin</artifactId>
477                     <version>2.17</version>
478                 </plugin>
479                 <!-- Maven OSGi bundle plugin used to package OSGi bundles -->
480                 <plugin>
481                     <groupId>org.apache.felix</groupId>
482                     <artifactId>maven-bundle-plugin</artifactId>
483                     <version>${bundle.plugin.version}</version>
484                 </plugin>
485                 <plugin>
486                     <groupId>org.codehaus.mojo</groupId>
487                     <artifactId>build-helper-maven-plugin</artifactId>
488                     <version>1.9.1</version>
489                 </plugin>
490                 <!-- SonarQube plugin -->
491                 <plugin>
492                     <groupId>org.codehaus.mojo</groupId>
493                     <artifactId>sonar-maven-plugin</artifactId>
494                     <version>3.2</version>
495                 </plugin>
496             </plugins>
497         </pluginManagement>
498         <plugins>
499             <!-- Javadocs Plugin -->
500             <plugin>
501                 <groupId>org.apache.maven.plugins</groupId>
502                 <artifactId>maven-site-plugin</artifactId>
503                 <version>3.6</version>
504                 <dependencies>
505                     <dependency>
506                         <groupId>org.apache.maven.wagon</groupId>
507                         <artifactId>wagon-webdav-jackrabbit</artifactId>
508                         <version>2.10</version>
509                     </dependency>
510                 </dependencies>
511             </plugin>
512             <!-- license plugin -->
513             <plugin>
514                 <groupId>org.codehaus.mojo</groupId>
515                 <artifactId>license-maven-plugin</artifactId>
516                 <version>1.10</version>
517                 <configuration>
518                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
519                     <processStartTag>============LICENSE_START=======================================================</processStartTag>
520                     <processEndTag>============LICENSE_END=========================================================</processEndTag>
521                     <sectionDelimiter>================================================================================</sectionDelimiter>
522                     <licenseName>apache_v2</licenseName>
523                     <inceptionYear>2017</inceptionYear>
524                     <organizationName>AT&amp;T Intellectual Property. All rights
525                                                 reserved.</organizationName>
526                     <projectName>openECOMP : APP-C</projectName>
527                     <canUpdateCopyright>true</canUpdateCopyright>
528                     <canUpdateDescription>true</canUpdateDescription>
529                     <canUpdateLicense>true</canUpdateLicense>
530                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
531                 </configuration>
532                 <executions>
533                     <execution>
534                         <id>first</id>
535                         <goals>
536                             <goal>update-file-header</goal>
537                         </goals>
538                         <phase>process-sources</phase>
539                     </execution>
540                 </executions>
541             </plugin>
542             <plugin>
543                 <groupId>org.codehaus.mojo</groupId>
544                 <artifactId>properties-maven-plugin</artifactId>
545                 <executions>
546                     <execution>
547                         <goals>
548                             <goal>set-system-properties</goal>
549                         </goals>
550                         <configuration>
551                             <properties>
552                                 <property>
553                                     <name>maven.wagon.http.ssl.allowall</name>
554                                     <value>${ssl.allowall}</value>
555                                 </property>
556                                 <property>
557                                     <name>maven.wagon.http.ssl.insecure</name>
558                                     <value>${ssl.insecure}</value>
559                                 </property>
560                             </properties>
561                         </configuration>
562                     </execution>
563                 </executions>
564             </plugin>
565             <!-- blackduck maven plugin -->
566             <!--
567             <plugin>
568                 <groupId>com.blackducksoftware.integration</groupId>
569                 <artifactId>hub-maven-plugin</artifactId>
570                 <version>1.4.0</version>
571                 <inherited>false</inherited>
572                 <configuration>
573                     <hubProjectName>${project.name}</hubProjectName>
574                     <outputDirectory>${project.basedir}</outputDirectory>
575                 </configuration>
576                 <executions>
577                     <execution>
578                         <id>create-bdio-file</id>
579                         <phase>package</phase>
580                         <goals>
581                             <goal>createHubOutput</goal>
582                         </goals>
583                     </execution>
584                 </executions>
585             </plugin>
586             -->
587         </plugins>
588     </build>
589
590
591     <!-- ================================================================================== -->
592     <!-- The modules we build every time -->
593     <!-- ================================================================================== -->
594     <modules>
595         <module>appc-common</module>
596     </modules>
597     <!-- Adding profiles for testing -->
598     <profiles>
599         <profile>
600             <id>appc-core</id>
601             <properties>
602                 <ssl.allowall>true</ssl.allowall>
603                 <ssl.insecure>true</ssl.insecure>
604                 <openecomp.nexus.host>nexus.onap.org</openecomp.nexus.host>
605                 <openecomp.nexus.release-url>https://nexus.onap.org/content/repositories/releases/</openecomp.nexus.release-url>
606                 <openecomp.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots/</openecomp.nexus.snapshot-url>
607                 <openecomp.git.port>7999</openecomp.git.port>
608                 <openecomp.git.project>st_osecomp</openecomp.git.project>
609                 <openecomp.git.protocol>http</openecomp.git.protocol>
610             </properties>
611             <!-- Core app-c from 1604 -->
612             <activation>
613                 <activeByDefault>true</activeByDefault>
614             </activation>
615             <modules>
616                 <module>appc-common</module>
617                 <module>appc-adapters</module>
618                 <module>appc-provider</module>
619                 <module>appc-event-listener</module>
620                 <module>appc-asdc-listener</module>
621             </modules>
622         </profile>
623         <profile>
624             <id>request-dispatcher</id>
625             <properties>
626                 <ssl.allowall>true</ssl.allowall>
627                 <ssl.insecure>true</ssl.insecure>
628             </properties>
629             <activation>
630                 <activeByDefault>true</activeByDefault>
631             </activation>
632             <modules>
633                 <module>appc-dispatcher</module>
634                 <module>appc-metric</module>
635                 <module>appc-dg</module>
636                 <module>appc-dg-util</module>
637             </modules>
638         </profile>
639     </profiles>
640 </project>