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