blob: 5297fca95f79171d261ffffc19de2b335d804f49 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Patrick Brady7a638b62017-03-30 11:04:22 -07002<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">
Patrick Brady57b5eef2017-02-10 15:00:49 -08004 <parent>
Patrick Brady7a638b62017-03-30 11:04:22 -07005 <groupId>org.opendaylight.odlparent</groupId>
6 <artifactId>odlparent</artifactId>
Patrick Bradya41533f2017-04-03 09:47:37 -07007 <version>1.7.1-Boron-SR1</version>
Patrick Brady7a638b62017-03-30 11:04:22 -07008 <relativePath>../../../../../opendaylight/odlparent</relativePath>
Patrick Brady57b5eef2017-02-10 15:00:49 -08009 </parent>
Patrick Brady7a638b62017-03-30 11:04:22 -070010
11
12 <modelVersion>4.0.0</modelVersion>
Patrick Brady57b5eef2017-02-10 15:00:49 -080013 <packaging>pom</packaging>
14 <groupId>org.openecomp.appc</groupId>
15 <artifactId>appc</artifactId>
Patrick Brady03682da2017-03-10 13:07:19 -080016 <version>1.1.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080017 <name>APP-C</name>
18 <description>Construct the Application Controller component for the ECOMP project.</description>
19 <inceptionYear>2015-07-20</inceptionYear>
20 <organization>
21 <name>OpenECOMP</name>
22 </organization>
Patrick Brady7a638b62017-03-30 11:04:22 -070023
24
Patrick Brady57b5eef2017-02-10 15:00:49 -080025 <!-- ================================================================================== -->
26 <!-- Configuration properties -->
27 <!-- ================================================================================== -->
28 <properties>
Patrick Brady7a638b62017-03-30 11:04:22 -070029 <!-- VERSIONS -->
30 <!-- OpenDaylight Versions -->
Patrick Bradya41533f2017-04-03 09:47:37 -070031 <odl.controller.config.api.version>0.5.1-Boron-SR1</odl.controller.config.api.version>
Patrick Brady7a638b62017-03-30 11:04:22 -070032 <odl.karaf.empty.distro.version>${odl.version}</odl.karaf.empty.distro.version>
Patrick Bradya41533f2017-04-03 09:47:37 -070033 <odl.ietf-inet-types.version>2010.09.24.9.1-Boron-SR1</odl.ietf-inet-types.version>
34 <odl.ietf-yang-types.version>2010.09.24.9.1-Boron-SR1</odl.ietf-yang-types.version>
35 <odl.yang.jmx.generator.version>0.5.1-Boron-SR1</odl.yang.jmx.generator.version>
36 <odl.version>1.7.1-Boron-SR1</odl.version>
37 <odl.mdsal.yang.binding.version>0.9.1-Boron-SR1</odl.mdsal.yang.binding.version>
38 <odl.sal.api.gen.plugin.version>0.9.1-Boron-SR1</odl.sal.api.gen.plugin.version>
39 <odl.yangtools.version>1.0.1-Boron-SR1</odl.yangtools.version>
40 <odl.mdsal.version>1.4.1-Boron-SR1</odl.mdsal.version>
Patrick Brady7a638b62017-03-30 11:04:22 -070041
42 <!-- OPENECOMP SDNC versions -->
Patrick Bradya41533f2017-04-03 09:47:37 -070043 <sdnctl.sli.version>1.1.0-SNAPSHOT</sdnctl.sli.version>
44 <sdnctl.dblib.version>1.1.0-SNAPSHOT</sdnctl.dblib.version>
45 <sdnctl.aai.service.version>1.1.0-SNAPSHOT</sdnctl.aai.service.version>
Patrick Brady7a638b62017-03-30 11:04:22 -070046
Patrick Brady57b5eef2017-02-10 15:00:49 -080047 <cdp.pal.version>0.0.1</cdp.pal.version>
48 <eelf.version>0.0.1</eelf.version>
49 <eelf.maven.plugin.version>0.0.1</eelf.maven.plugin.version>
50 <cadi-version>1.3.0</cadi-version>
51 <inno-version>1.2.11</inno-version>
52 <dme2-version>3.1.200</dme2-version>
Patrick Brady7a638b62017-03-30 11:04:22 -070053 <bundle.plugin.version>2.5.0</bundle.plugin.version>
54 <java.version.source>1.7</java.version.source>
55 <java.version.target>1.7</java.version.target>
56 <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
57 <equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version>
58 <apache.httpcomponents.version>4.4</apache.httpcomponents.version>
Patrick Bradya41533f2017-04-03 09:47:37 -070059 <commons.lang3.version>3.4</commons.lang3.version>
Patrick Brady7a638b62017-03-30 11:04:22 -070060 <antlr.version>4.5.1</antlr.version>
61 <mysql.connector.version>5.1.39</mysql.connector.version>
62
63 <!-- SONAR -->
64 <sonar.language>java</sonar.language>
65 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
66 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
67 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
68 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
69 <sonar.projectVersion>${project.version}</sonar.projectVersion>
70
Patrick Brady57b5eef2017-02-10 15:00:49 -080071 <salGeneratorPath>target/generated-sources/yang-gen-sal</salGeneratorPath>
Patrick Brady57b5eef2017-02-10 15:00:49 -080072 <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
Patrick Brady7a638b62017-03-30 11:04:22 -070073 <!-- ADDING TO SUPPORT APPC-PROVIDER-MODEL yang-gen-sal FOLDER GENERATION -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080074 <yang.file.directory>src/main/yang</yang.file.directory>
Patrick Brady7a638b62017-03-30 11:04:22 -070075 <features.file>features.xml</features.file>
76 <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
77 <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
78 <checkstyle.skip>true</checkstyle.skip>
Patrick Brady94216272017-04-03 22:53:26 -070079
80 <!-- NEXUS URLS -->
81 <openecomp.nexus.url>https://nexus.onap.org/content</openecomp.nexus.url>
82 <openecomp.nexus.snapshot-url>${openecomp.nexus.url}/repositories/snapshots/</openecomp.nexus.snapshot-url>
83 <openecomp.nexus.release-url>${openecomp.nexus.url}/repositories/releases/</openecomp.nexus.release-url>
84 <openecomp.nexus.javadocs-url>dav:${openecomp.nexus.url}/sites/site/org/openecomp/appc/${project.version}</openecomp.nexus.javadocs-url>
Patrick Brady57b5eef2017-02-10 15:00:49 -080085 </properties>
Patrick Brady7a638b62017-03-30 11:04:22 -070086
87
Patrick Brady57b5eef2017-02-10 15:00:49 -080088 <!-- ================================================================================== -->
89 <!-- Javadoc Generation Plugin -->
90 <!-- ================================================================================== -->
91 <reporting>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-javadoc-plugin</artifactId>
96 <version>2.10.4</version>
97 <configuration>
98 <excludePackageNames>org.openecomp.sdnc</excludePackageNames>
99 <failOnError>false</failOnError>
100 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
101 <docletArtifact>
102 <groupId>org.umlgraph</groupId>
103 <artifactId>umlgraph</artifactId>
104 <version>5.6</version>
105 </docletArtifact>
106 <additionalparam>-views</additionalparam>
107 <useStandardDocletOptions>true</useStandardDocletOptions>
108 </configuration>
109 </plugin>
110 </plugins>
111 </reporting>
Patrick Brady7a638b62017-03-30 11:04:22 -0700112
113
Patrick Brady57b5eef2017-02-10 15:00:49 -0800114 <!-- ================================================================================== -->
Patrick Brady7a638b62017-03-30 11:04:22 -0700115 <!-- Distribution Management Sites -->
Patrick Brady57b5eef2017-02-10 15:00:49 -0800116 <!-- ================================================================================== -->
117 <distributionManagement>
118 <!-- This site is used for Javadocs -->
119 <site>
Patrick Brady7a638b62017-03-30 11:04:22 -0700120 <id>ecomp-site</id>
Patrick Brady94216272017-04-03 22:53:26 -0700121 <url>${openecomp.nexus.javadocs-url}</url>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800122 </site>
Patrick Brady6fa6c252017-04-03 09:00:49 -0700123 <repository>
124 <id>ecomp-releases</id>
125 <name>openecomp-repository-releases</name>
Patrick Brady94216272017-04-03 22:53:26 -0700126 <url>${openecomp.nexus.release-url}</url>
Patrick Brady6fa6c252017-04-03 09:00:49 -0700127 </repository>
128 <snapshotRepository>
129 <id>ecomp-snapshots</id>
130 <name>openecomp-repository-snapshots</name>
Patrick Brady94216272017-04-03 22:53:26 -0700131 <url>${openecomp.nexus.snapshot-url}</url>
Patrick Brady6fa6c252017-04-03 09:00:49 -0700132 </snapshotRepository>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800133 </distributionManagement>
Patrick Brady7a638b62017-03-30 11:04:22 -0700134
135
Patrick Brady57b5eef2017-02-10 15:00:49 -0800136 <!-- ================================================================================== -->
137 <!-- Define plugin repositories -->
138 <!-- ================================================================================== -->
139 <pluginRepositories>
140 <pluginRepository>
141 <id>opendaylight-mirror</id>
142 <name>opendaylight-mirror</name>
143 <url>https://nexus.opendaylight.org/content/repositories/public/</url>
144 <releases>
145 <enabled>true</enabled>
146 <updatePolicy>never</updatePolicy>
147 </releases>
148 <snapshots>
149 <enabled>false</enabled>
150 </snapshots>
151 </pluginRepository>
152 <pluginRepository>
153 <id>opendaylight-snapshot</id>
154 <name>opendaylight-snapshot</name>
155 <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
156 <releases>
157 <enabled>false</enabled>
158 </releases>
159 <snapshots>
160 <enabled>true</enabled>
161 </snapshots>
162 </pluginRepository>
163 <!-- Black Duck plugin dependencies -->
164 <pluginRepository>
165 <id>JCenter</id>
166 <name>JCenter Repository</name>
167 <url>http://jcenter.bintray.com</url>
168 </pluginRepository>
169 <pluginRepository>
170 <id>Restlet</id>
171 <name>Restlet Repository</name>
172 <url>http://maven.restlet.com</url>
173 </pluginRepository>
174 </pluginRepositories>
Patrick Brady7a638b62017-03-30 11:04:22 -0700175
176
Patrick Brady57b5eef2017-02-10 15:00:49 -0800177 <!-- ================================================================================== -->
178 <!-- Define project-wide dependencies -->
179 <!-- ================================================================================== -->
180 <dependencyManagement>
181 <dependencies>
182 <!-- ODL -->
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>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800191 <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>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800197 </dependency>
198 <dependency>
199 <groupId>org.opendaylight.controller</groupId>
200 <artifactId>sal-test-model</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800201 <version>${odl.mdsal.version}</version>
202 </dependency>
203 <dependency>
204 <groupId>org.opendaylight.netconf</groupId>
205 <artifactId>sal-rest-connector</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800206 <version>${odl.mdsal.version}</version>
207 </dependency>
208 <dependency>
209 <groupId>org.opendaylight.controller</groupId>
210 <artifactId>sal-binding-broker-impl</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800211 <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>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800217 </dependency>
218 <dependency>
219 <groupId>org.opendaylight.mdsal</groupId>
220 <artifactId>yang-binding</artifactId>
Patrick Bradya41533f2017-04-03 09:47:37 -0700221 <version>${odl.mdsal.yang.binding.version}</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800222 </dependency>
223 <dependency>
224 <groupId>org.opendaylight.yangtools</groupId>
225 <artifactId>yang-common</artifactId>
226 <version>${odl.yangtools.version}</version>
227 </dependency>
228 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800229 <groupId>org.opendaylight.controller</groupId>
230 <artifactId>features-mdsal</artifactId>
231 <version>1.3.2-Beryllium-SR2</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>2.0.2-Beryllium-SR2</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 <!-- CURRENTLY DOES NOT EXIST IN 3.0. Replacement? -->
249 <!-- Required for launching the feature tests -->
250 <!-- <dependency> -->
251 <!-- <groupId>org.opendaylight.yangtools</groupId> -->
252 <!-- <artifactId>features-test</artifactId> -->
253 <!-- <version>${odl.yangtools.version}</version> -->
254 <!-- <scope>test</scope> -->
255 <!-- </dependency> -->
Patrick Brady7a638b62017-03-30 11:04:22 -0700256
Patrick Brady57b5eef2017-02-10 15:00:49 -0800257 <!-- YANG tools -->
258 <dependency>
259 <groupId>org.opendaylight.yangtools</groupId>
260 <artifactId>features-yangtools</artifactId>
261 <version>${odl.yangtools.version}</version>
262 <classifier>features</classifier>
263 <type>xml</type>
264 </dependency>
265 <!-- SDNC -->
266 <dependency>
267 <groupId>org.openecomp.sdnc.core</groupId>
268 <artifactId>sli-common</artifactId>
269 <version>${sdnctl.sli.version}</version>
270 </dependency>
271 <dependency>
272 <groupId>org.openecomp.sdnc.core</groupId>
273 <artifactId>sli-provider</artifactId>
274 <version>${sdnctl.sli.version}</version>
275 </dependency>
276 <!-- dblib -->
277 <dependency>
278 <groupId>org.openecomp.sdnc.core</groupId>
279 <artifactId>dblib-provider</artifactId>
280 <version>${sdnctl.dblib.version}</version>
281 </dependency>
Patrick Brady7a638b62017-03-30 11:04:22 -0700282 <!-- A&AI service provider dependency override in order to use
283 a stable version -->
Patrick Brady57b5eef2017-02-10 15:00:49 -0800284 <dependency>
285 <groupId>org.openecomp.sdnc.adaptors</groupId>
286 <artifactId>aai-service-provider</artifactId>
287 <version>${sdnctl.aai.service.version}</version>
288 </dependency>
289 <!-- APPC -->
290 <dependency>
291 <groupId>org.openecomp.appc</groupId>
292 <artifactId>appc-controller-features</artifactId>
293 <classifier>features</classifier>
294 <type>xml</type>
295 <version>${project.version}</version>
296 </dependency>
297 <dependency>
298 <groupId>org.openecomp.appc</groupId>
299 <artifactId>appc-controller-model</artifactId>
300 <version>${project.version}</version>
301 </dependency>
302 <dependency>
303 <groupId>org.openecomp.appc</groupId>
304 <artifactId>appc-controller-bundle</artifactId>
305 <version>${project.version}</version>
306 <classifier>config</classifier>
307 <type>xml</type>
308 </dependency>
309 <dependency>
310 <groupId>org.openecomp.appc</groupId>
311 <artifactId>appc-controller-bundle</artifactId>
312 <version>${project.version}</version>
313 </dependency>
314 <!-- OTHER -->
315 <dependency>
316 <groupId>equinoxSDK381</groupId>
317 <artifactId>org.eclipse.osgi</artifactId>
318 <version>${equinox.osgi.version}</version>
319 </dependency>
320 <dependency>
321 <groupId>org.apache.commons</groupId>
322 <artifactId>commons-lang3</artifactId>
323 <version>${commons.lang3.version}</version>
324 </dependency>
325 <dependency>
326 <groupId>junit</groupId>
327 <artifactId>junit</artifactId>
328 <version>4.12</version>
329 <scope>test</scope>
330 </dependency>
331 <dependency>
332 <groupId>ch.qos.logback</groupId>
333 <artifactId>logback-core</artifactId>
334 <version>1.1.1</version>
335 <scope>compile</scope>
336 </dependency>
337 <dependency>
338 <groupId>ch.qos.logback</groupId>
339 <artifactId>logback-classic</artifactId>
340 <version>1.1.1</version>
341 <scope>compile</scope>
342 </dependency>
343 <dependency>
344 <groupId>org.slf4j</groupId>
345 <artifactId>slf4j-api</artifactId>
346 <version>1.7.12</version>
347 </dependency>
348 <dependency>
349 <groupId>commons-lang</groupId>
350 <artifactId>commons-lang</artifactId>
351 <version>2.6</version>
352 </dependency>
353 <dependency>
354 <groupId>org.apache.sshd</groupId>
355 <artifactId>sshd-core</artifactId>
356 <version>0.12.0</version>
357 </dependency>
358 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800359 <groupId>org.mockito</groupId>
360 <artifactId>mockito-core</artifactId>
361 <version>1.10.19</version>
362 <scope>test</scope>
363 </dependency>
364 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800365 <groupId>com.att.cdp</groupId>
366 <artifactId>cdp-pal-common</artifactId>
367 <version>${cdp.pal.version}</version>
368 </dependency>
369 <dependency>
370 <groupId>com.att.cdp</groupId>
371 <artifactId>cdp-pal-openstack</artifactId>
372 <version>${cdp.pal.version}</version>
373 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800374 <dependency>
375 <groupId>com.att.authz</groupId>
376 <artifactId>authz-client</artifactId>
377 <version>2.3</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800378 </dependency>
379 <!-- EELF logging framework -->
380 <dependency>
381 <groupId>com.att.eelf</groupId>
382 <artifactId>eelf-core</artifactId>
383 <version>${eelf.version}</version>
384 </dependency>
385 </dependencies>
386 </dependencyManagement>
Patrick Brady7a638b62017-03-30 11:04:22 -0700387
388
Patrick Brady57b5eef2017-02-10 15:00:49 -0800389 <!-- ================================================================================== -->
390 <!-- Define common plugins and make them available for all modules -->
391 <!-- ================================================================================== -->
392 <build>
393 <pluginManagement>
394 <plugins>
Patrick Brady7051d1d2017-03-06 11:56:21 -0800395 <!--maven staging plugin-->
396 <plugin>
397 <groupId>org.sonatype.plugins</groupId>
398 <artifactId>nexus-staging-maven-plugin</artifactId>
399 <version>1.6.7</version>
400 <extensions>true</extensions>
401 <configuration>
Andrew Grimberg196901a2017-03-29 13:39:41 -0700402 <nexusUrl>https://nexus.onap.org/content/repositories/staging/</nexusUrl>
Patrick Brady7051d1d2017-03-06 11:56:21 -0800403 <stagingProfileId>176c31dfe190a</stagingProfileId>
404 <serverId>ecomp-staging</serverId>
405 </configuration>
406 </plugin>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800407 <!-- Define the site plugin to generate documentation -->
408 <plugin>
409 <groupId>org.apache.maven.plugins</groupId>
410 <artifactId>maven-site-plugin</artifactId>
411 <version>3.4</version>
412 <dependencies>
413 <!-- add support for ssh/scp -->
414 <dependency>
415 <groupId>org.apache.maven.wagon</groupId>
416 <artifactId>wagon-ssh</artifactId>
417 <version>1.0</version>
418 </dependency>
419 </dependencies>
420 </plugin>
421 <!-- Define the compiler plugin -->
422 <plugin>
423 <groupId>org.apache.maven.plugins</groupId>
424 <artifactId>maven-compiler-plugin</artifactId>
425 <version>${maven.compile.plugin.version}</version>
426 <configuration>
427 <source>${java.version.source}</source>
428 <target>${java.version.target}</target>
429 </configuration>
430 </plugin>
431 <!-- Define the javadoc plugin -->
432 <plugin>
433 <groupId>org.apache.maven.plugins</groupId>
434 <artifactId>maven-javadoc-plugin</artifactId>
435 <version>2.10</version>
436 <configuration>
437 <excludePackageNames>org.opendaylight.*:org.openecomp.sdnc</excludePackageNames>
438 </configuration>
439 </plugin>
440 <!-- Define the source plugin -->
441 <plugin>
442 <artifactId>maven-source-plugin</artifactId>
443 <version>2.1.1</version>
444 </plugin>
445 <!-- Resources plugin -->
446 <plugin>
447 <groupId>org.apache.maven.plugins</groupId>
448 <artifactId>maven-resources-plugin</artifactId>
449 <version>2.6</version>
450 <executions>
451 <execution>
452 <id>filter</id>
453 <goals>
454 <goal>resources</goal>
455 </goals>
456 <phase>generate-resources</phase>
457 </execution>
458 </executions>
459 </plugin>
460 <plugin>
461 <artifactId>maven-release-plugin</artifactId>
462 <version>2.5.2</version>
463 <configuration>
464 <goals>-s ${mvn.settings} deploy</goals>
465 </configuration>
466 </plugin>
467 <plugin>
468 <artifactId>maven-assembly-plugin</artifactId>
469 <version>2.5.5</version>
470 </plugin>
471 <plugin>
472 <groupId>org.apache.maven.plugins</groupId>
473 <artifactId>maven-deploy-plugin</artifactId>
474 <version>2.8.1</version>
475 </plugin>
476 <plugin>
477 <groupId>org.apache.maven.plugins</groupId>
478 <artifactId>maven-dependency-plugin</artifactId>
479 <version>2.10</version>
480 </plugin>
481 <!-- Maven surefire plugin for testing -->
482 <plugin>
483 <artifactId>maven-surefire-plugin</artifactId>
484 <version>2.17</version>
485 </plugin>
486 <!-- Maven OSGi bundle plugin used to package OSGi bundles -->
487 <plugin>
488 <groupId>org.apache.felix</groupId>
489 <artifactId>maven-bundle-plugin</artifactId>
490 <version>${bundle.plugin.version}</version>
491 </plugin>
492 <plugin>
493 <groupId>org.codehaus.mojo</groupId>
494 <artifactId>build-helper-maven-plugin</artifactId>
495 <version>1.9.1</version>
496 </plugin>
497 <!-- SonarQube plugin -->
498 <plugin>
499 <groupId>org.codehaus.mojo</groupId>
500 <artifactId>sonar-maven-plugin</artifactId>
501 <version>3.2</version>
502 </plugin>
503 </plugins>
504 </pluginManagement>
505 <plugins>
506 <!-- Javadocs Plugin -->
507 <plugin>
508 <groupId>org.apache.maven.plugins</groupId>
509 <artifactId>maven-site-plugin</artifactId>
510 <version>3.6</version>
511 <dependencies>
512 <dependency>
513 <groupId>org.apache.maven.wagon</groupId>
514 <artifactId>wagon-webdav-jackrabbit</artifactId>
515 <version>2.10</version>
516 </dependency>
517 </dependencies>
518 </plugin>
519 <!-- license plugin -->
520 <plugin>
521 <groupId>org.codehaus.mojo</groupId>
522 <artifactId>license-maven-plugin</artifactId>
523 <version>1.10</version>
524 <configuration>
525 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
526 <processStartTag>============LICENSE_START=======================================================</processStartTag>
527 <processEndTag>============LICENSE_END=========================================================</processEndTag>
528 <sectionDelimiter>================================================================================</sectionDelimiter>
529 <licenseName>apache_v2</licenseName>
530 <inceptionYear>2017</inceptionYear>
531 <organizationName>AT&amp;T Intellectual Property. All rights
532 reserved.</organizationName>
533 <projectName>openECOMP : APP-C</projectName>
534 <canUpdateCopyright>true</canUpdateCopyright>
535 <canUpdateDescription>true</canUpdateDescription>
536 <canUpdateLicense>true</canUpdateLicense>
537 <emptyLineAfterHeader>true</emptyLineAfterHeader>
538 </configuration>
539 <executions>
540 <execution>
541 <id>first</id>
542 <goals>
543 <goal>update-file-header</goal>
544 </goals>
545 <phase>process-sources</phase>
546 </execution>
547 </executions>
548 </plugin>
549 <plugin>
550 <groupId>org.codehaus.mojo</groupId>
551 <artifactId>properties-maven-plugin</artifactId>
552 <executions>
553 <execution>
554 <goals>
555 <goal>set-system-properties</goal>
556 </goals>
557 <configuration>
558 <properties>
559 <property>
560 <name>maven.wagon.http.ssl.allowall</name>
561 <value>${ssl.allowall}</value>
562 </property>
563 <property>
564 <name>maven.wagon.http.ssl.insecure</name>
565 <value>${ssl.insecure}</value>
566 </property>
567 </properties>
568 </configuration>
569 </execution>
570 </executions>
571 </plugin>
572 <!-- blackduck maven plugin -->
573 <!--
574 <plugin>
575 <groupId>com.blackducksoftware.integration</groupId>
576 <artifactId>hub-maven-plugin</artifactId>
577 <version>1.4.0</version>
578 <inherited>false</inherited>
579 <configuration>
580 <hubProjectName>${project.name}</hubProjectName>
581 <outputDirectory>${project.basedir}</outputDirectory>
582 </configuration>
583 <executions>
584 <execution>
585 <id>create-bdio-file</id>
586 <phase>package</phase>
587 <goals>
588 <goal>createHubOutput</goal>
589 </goals>
590 </execution>
591 </executions>
592 </plugin>
593 -->
594 </plugins>
595 </build>
Patrick Brady7a638b62017-03-30 11:04:22 -0700596
597
Patrick Brady57b5eef2017-02-10 15:00:49 -0800598 <!-- ================================================================================== -->
599 <!-- The modules we build every time -->
600 <!-- ================================================================================== -->
601 <modules>
602 <module>appc-common</module>
603 </modules>
604 <!-- Adding profiles for testing -->
605 <profiles>
606 <profile>
607 <id>appc-core</id>
608 <properties>
609 <ssl.allowall>true</ssl.allowall>
610 <ssl.insecure>true</ssl.insecure>
Andrew Grimberg196901a2017-03-29 13:39:41 -0700611 <openecomp.nexus.host>nexus.onap.org</openecomp.nexus.host>
612 <openecomp.nexus.release-url>https://nexus.onap.org/content/repositories/releases/</openecomp.nexus.release-url>
613 <openecomp.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots/</openecomp.nexus.snapshot-url>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800614 <openecomp.git.port>7999</openecomp.git.port>
615 <openecomp.git.project>st_osecomp</openecomp.git.project>
616 <openecomp.git.protocol>http</openecomp.git.protocol>
617 </properties>
618 <!-- Core app-c from 1604 -->
619 <activation>
620 <activeByDefault>true</activeByDefault>
621 </activation>
622 <modules>
623 <module>appc-common</module>
624 <module>appc-adapters</module>
625 <module>appc-provider</module>
626 <module>appc-event-listener</module>
627 <module>appc-asdc-listener</module>
628 </modules>
629 </profile>
630 <profile>
631 <id>request-dispatcher</id>
632 <properties>
633 <ssl.allowall>true</ssl.allowall>
634 <ssl.insecure>true</ssl.insecure>
635 </properties>
636 <activation>
637 <activeByDefault>true</activeByDefault>
638 </activation>
639 <modules>
640 <module>appc-dispatcher</module>
641 <module>appc-metric</module>
642 <module>appc-dg</module>
643 <module>appc-dg-util</module>
644 </modules>
645 </profile>
646 </profiles>
Patrick Brady9171e282017-02-21 13:20:34 -0800647</project>