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