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