Merge "Grant permissions to *.sh from dockerfile"
[appc/deployment.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" 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.core</groupId>
5         <artifactId>root</artifactId>
6         <version>1.0.0-SNAPSHOT</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     <repositories>
32         <repository>
33             <id>ecomp-staging</id>
34             <name>ecomp Staging Repository</name>
35             <url>https://nexus.openecomp.org/content/repositories/staging/</url>
36         </repository>
37     </repositories>
38     <build>
39         <plugins>
40             <!--maven staging plugin-->
41                 <plugin>
42                     <groupId>org.sonatype.plugins</groupId>
43                     <artifactId>nexus-staging-maven-plugin</artifactId>
44                     <version>1.6.7</version>
45                     <extensions>true</extensions>
46                     <configuration>
47                         <nexusUrl>https://nexus.openecomp.org</nexusUrl>
48                         <stagingProfileId>176c31dfe190a</stagingProfileId>
49                         <serverId>ecomp-staging</serverId>
50                     </configuration>
51                 </plugin>
52             <!-- blackduck maven plugin -->
53             <plugin>
54                 <groupId>com.blackducksoftware.integration</groupId>
55                 <artifactId>hub-maven-plugin</artifactId>
56                 <version>1.4.0</version>
57                 <inherited>false</inherited>
58                 <configuration>
59                     <hubProjectName>${project.name}</hubProjectName>
60                     <outputDirectory>${project.basedir}</outputDirectory>
61                 </configuration>
62                 <executions>
63                     <execution>
64                         <id>create-bdio-file</id>
65                         <phase>package</phase>
66                         <goals>
67                             <goal>createHubOutput</goal>
68                         </goals>
69                     </execution>
70                 </executions>
71             </plugin>
72             <!-- license plugin -->
73             <plugin>
74                 <groupId>org.codehaus.mojo</groupId>
75                 <artifactId>license-maven-plugin</artifactId>
76                 <version>1.10</version>
77                 <configuration>
78                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
79                     <processStartTag>============LICENSE_START=======================================================</processStartTag>
80                     <processEndTag>============LICENSE_END=========================================================</processEndTag>
81                     <sectionDelimiter>================================================================================</sectionDelimiter>
82                     <licenseName>apache_v2</licenseName>
83                     <inceptionYear>2017</inceptionYear>
84                     <organizationName>OpenECOMP</organizationName>
85                     <projectName>openECOMP : APP-C</projectName>
86                     <canUpdateCopyright>true</canUpdateCopyright>
87                     <canUpdateDescription>true</canUpdateDescription>
88                     <canUpdateLicense>true</canUpdateLicense>
89                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
90                 </configuration>
91                 <executions>
92                     <execution>
93                         <id>first</id>
94                         <goals>
95                             <goal>update-file-header</goal>
96                         </goals>
97                         <phase>process-sources</phase>
98                     </execution>
99                 </executions>
100             </plugin>
101         </plugins>
102     </build>
103     <modules>
104         <module>platform-logic</module>
105         <module>installation</module>
106     </modules>
107     <organization>
108         <name>OpenECOMP</name>
109     </organization>
110     <version>1.0.0-SNAPSHOT</version>
111 </project>