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