blob: b47b29051af524b243144ee49ef22ff3039c0154 [file] [log] [blame]
Patrick Brady83514252017-02-13 11:57:08 -08001<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <groupId>org.openecomp.sdnc</groupId>
5 <artifactId>root</artifactId>
6 <version>1.0.0</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>pom</packaging>
10 <groupId>org.openecomp.appc.deployment</groupId>
11 <artifactId>appc-docker-project</artifactId>
12 <name>APPC Docker Project</name>
13 <description>The APP-C component contains SDNC Docker Image, and installs APPC/SDNC components on top.</description>
14
15 <!-- ================================================================================== -->
16 <!-- Define plugin repositories -->
17 <!-- ================================================================================== -->
18 <pluginRepositories>
19 <!-- Black Duck plugin dependencies -->
20 <pluginRepository>
21 <id>JCenter</id>
22 <name>JCenter Repository</name>
23 <url>http://jcenter.bintray.com</url>
24 </pluginRepository>
25 <pluginRepository>
26 <id>Restlet</id>
27 <name>Restlet Repository</name>
28 <url>http://maven.restlet.com</url>
29 </pluginRepository>
30 </pluginRepositories>
31 <build>
32 <plugins>
33 <!-- blackduck maven plugin -->
34 <plugin>
35 <groupId>com.blackducksoftware.integration</groupId>
36 <artifactId>hub-maven-plugin</artifactId>
37 <version>1.4.0</version>
38 <inherited>false</inherited>
39 <configuration>
40 <hubProjectName>${project.name}</hubProjectName>
41 <outputDirectory>${project.basedir}</outputDirectory>
42 </configuration>
43 <executions>
44 <execution>
45 <id>create-bdio-file</id>
46 <phase>package</phase>
47 <goals>
48 <goal>createHubOutput</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 <!-- license plugin -->
54 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>license-maven-plugin</artifactId>
57 <version>1.10</version>
58 <configuration>
59 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
60 <processStartTag>============LICENSE_START=======================================================</processStartTag>
61 <processEndTag>============LICENSE_END=========================================================</processEndTag>
62 <sectionDelimiter>================================================================================</sectionDelimiter>
63 <licenseName>apache_v2</licenseName>
64 <inceptionYear>2017</inceptionYear>
65 <organizationName>OpenECOMP</organizationName>
66 <projectName>openECOMP : APP-C</projectName>
67 <canUpdateCopyright>true</canUpdateCopyright>
68 <canUpdateDescription>true</canUpdateDescription>
69 <canUpdateLicense>true</canUpdateLicense>
70 <emptyLineAfterHeader>true</emptyLineAfterHeader>
71 </configuration>
72 <executions>
73 <execution>
74 <id>first</id>
75 <goals>
76 <goal>update-file-header</goal>
77 </goals>
78 <phase>process-sources</phase>
79 </execution>
80 </executions>
81 </plugin>
82 </plugins>
83 </build>
84 <modules>
85 <module>platform-logic</module>
86 <module>installation</module>
87 </modules>
88 <organization>
89 <name>OpenECOMP</name>
90 </organization>
91 <version>1.0.0</version>
92</project>