[COMMON-15] summary
[sdnc/core.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
4         <modelVersion>4.0.0</modelVersion>
5         <packaging>pom</packaging>
6         <groupId>org.openecomp.sdnc.core</groupId>
7         <artifactId>sdnc-core</artifactId>
8
9         <name>SDN-C Core Components</name>
10         <url>https://wiki.openecomp.org</url>
11         <description>The SDN-C core components contains the SLI, dblib and root pom</description>
12
13         <parent>
14                 <groupId>org.openecomp.sdnc.core</groupId>
15                 <artifactId>root</artifactId>
16                 <version>1.1.0</version>
17                 <relativePath>rootpom/pom.xml</relativePath>
18         </parent>
19
20         <issueManagement>
21                 <system>JIRA</system>
22                 <url>http://jira.openecomp.org/</url>
23         </issueManagement>
24
25
26         <scm>
27                 <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-code.git</connection>
28                 <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-core.git</developerConnection>
29                 <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-core/browse</url>
30                 <tag>sdnc-core-1.1.0</tag>
31         </scm>
32
33         <ciManagement>
34                 <system>Jenkins</system>
35                 <url>https://jenkins.openecomp.org/</url>
36         </ciManagement>
37
38
39         <distributionManagement>
40                 <site>
41                         <id>ecomp-site</id>
42                         <url>dav:https://${openecomp.nexus.host}/content/sites/site/org/onap/sdnc/${project.artifactId}/${project.version}</url>
43                 </site>
44         </distributionManagement>
45
46
47         <profiles>
48                 <profile>
49                         <id>blackduck</id>
50                         <activation>
51                                 <property>
52                                         <name>blackduck-scan</name>
53                                 </property>
54                         </activation>
55                         <build>
56                                         <plugins>
57                                                 <plugin>
58                                                         <groupId>com.blackducksoftware.integration</groupId>
59                                                         <artifactId>hub-maven-plugin</artifactId>
60                                                         <version>1.4.0</version>
61                                                         <inherited>false</inherited>
62                                                         <configuration>
63                                                                 <hubProjectName>${project.name}</hubProjectName>
64                                                                 <outputDirectory>${project.basedir}</outputDirectory>
65                                                         </configuration>
66                                                         <executions>
67                                                                 <execution>
68                                                                         <id>create-bdio-file</id>
69                                                                         <phase>package</phase>
70                                                                         <goals>
71                                                                                 <goal>createHubOutput</goal>
72                                                                         </goals>
73                                                                 </execution>
74                                                         </executions>
75                                                 </plugin>
76                                         </plugins>
77
78
79
80                         </build>
81
82                 </profile>
83
84         </profiles>
85
86         <build>
87                 <plugins>
88                         <!-- license plugin -->
89
90                         <plugin>
91
92                                 <groupId>org.codehaus.mojo</groupId>
93
94                                 <artifactId>license-maven-plugin</artifactId>
95
96                                 <version>1.10</version>
97
98                                 <configuration>
99
100                                         <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
101
102                                         <processStartTag>============LICENSE_START=======================================================</processStartTag>
103
104                                         <processEndTag>============LICENSE_END=========================================================</processEndTag>
105
106                                         <sectionDelimiter>================================================================================</sectionDelimiter>
107
108                                         <licenseName>apache_v2</licenseName>
109
110                                         <inceptionYear>2017</inceptionYear>
111
112                                         <organizationName>AT&amp;T Intellectual Property. All rights
113                                                 reserved.</organizationName>
114
115                                         <projectName>openECOMP : SDN-C</projectName>
116
117                                         <canUpdateCopyright>true</canUpdateCopyright>
118
119                                         <canUpdateDescription>true</canUpdateDescription>
120
121                                         <canUpdateLicense>true</canUpdateLicense>
122
123                                         <emptyLineAfterHeader>true</emptyLineAfterHeader>
124
125                                 </configuration>
126
127                                 <executions>
128
129                                         <execution>
130
131                                                 <id>first</id>
132
133                                                 <goals>
134
135                                                         <goal>update-file-header</goal>
136
137                                                 </goals>
138
139                                                 <phase>process-sources</phase>
140
141                                         </execution>
142
143                                 </executions>
144
145                         </plugin>
146
147
148                         <plugin>
149                                 <groupId>org.apache.maven.plugins</groupId>
150                                 <artifactId>maven-surefire-plugin</artifactId>
151                                 <version>2.17</version>
152                                 <configuration>
153                                         <skipTests>true</skipTests>
154                                 </configuration>
155                         </plugin>
156                         <plugin>
157                                 <groupId>org.sonatype.plugins</groupId>
158                                 <artifactId>nexus-staging-maven-plugin</artifactId>
159                                 <version>1.6.7</version>
160                                 <extensions>true</extensions>
161                                 <configuration>
162                                         <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
163                                         <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId>
164                                         <serverId>${openecomp.nexus.staging.server-id}</serverId>
165                                 </configuration>
166                         </plugin>
167
168                 </plugins>
169
170         </build>
171         <modules>
172                 <module>dblib</module>
173                 <module>sli</module>
174                 <module>filters</module>
175                 <module>sliPluginUtils</module>
176                 <module>sliapi</module>
177         </modules>
178         <organization>
179                 <name>OpenECOMP</name>
180         </organization>
181         <version>1.1.1-SNAPSHOT</version>
182
183
184 </project>