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