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