ac4cc24c3400d46ca1a69331e50943385f1e94ae
[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.1.1-SNAPSHOT</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                                         <plugins>
60                                                 <plugin>
61                                                         <groupId>com.blackducksoftware.integration</groupId>
62                                                         <artifactId>hub-maven-plugin</artifactId>
63                                                         <version>1.4.0</version>
64                                                         <inherited>false</inherited>
65                                                         <configuration>
66                                                                 <hubProjectName>${project.name}</hubProjectName>
67                                                                 <outputDirectory>${project.basedir}</outputDirectory>
68                                                         </configuration>
69                                                         <executions>
70                                                                 <execution>
71                                                                         <id>create-bdio-file</id>
72                                                                         <phase>package</phase>
73                                                                         <goals>
74                                                                                 <goal>createHubOutput</goal>
75                                                                         </goals>
76                                                                 </execution>
77                                                         </executions>
78                                                 </plugin>
79                                         </plugins>
80
81
82
83                         </build>
84
85                 </profile>
86
87         </profiles>
88
89         <build>
90                 <plugins>
91                         <!-- license plugin -->
92
93                         <plugin>
94
95                                 <groupId>org.codehaus.mojo</groupId>
96
97                                 <artifactId>license-maven-plugin</artifactId>
98
99                                 <version>1.10</version>
100
101                                 <configuration>
102
103                                         <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
104
105                                         <processStartTag>============LICENSE_START=======================================================</processStartTag>
106
107                                         <processEndTag>============LICENSE_END=========================================================</processEndTag>
108
109                                         <sectionDelimiter>================================================================================</sectionDelimiter>
110
111                                         <licenseName>apache_v2</licenseName>
112
113                                         <inceptionYear>2017</inceptionYear>
114
115                                         <organizationName>AT&amp;T Intellectual Property. All rights
116                                                 reserved.</organizationName>
117
118                                         <projectName>openECOMP : SDN-C</projectName>
119
120                                         <canUpdateCopyright>true</canUpdateCopyright>
121
122                                         <canUpdateDescription>true</canUpdateDescription>
123
124                                         <canUpdateLicense>true</canUpdateLicense>
125
126                                         <emptyLineAfterHeader>true</emptyLineAfterHeader>
127
128                                 </configuration>
129
130                                 <executions>
131
132                                         <execution>
133
134                                                 <id>first</id>
135
136                                                 <goals>
137
138                                                         <goal>update-file-header</goal>
139
140                                                 </goals>
141
142                                                 <phase>process-sources</phase>
143
144                                         </execution>
145
146                                 </executions>
147
148                         </plugin>
149
150
151                         <plugin>
152                                 <groupId>org.apache.maven.plugins</groupId>
153                                 <artifactId>maven-surefire-plugin</artifactId>
154                                 <version>2.17</version>
155                                 <configuration>
156                                         <skipTests>true</skipTests>
157                                 </configuration>
158                         </plugin>
159                         <plugin>
160                                 <groupId>org.sonatype.plugins</groupId>
161                                 <artifactId>nexus-staging-maven-plugin</artifactId>
162                                 <version>1.6.7</version>
163                                 <extensions>true</extensions>
164                                 <configuration>
165                                         <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
166                                         <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId>
167                                         <serverId>${openecomp.nexus.staging.server-id}</serverId>
168                                 </configuration>
169                         </plugin>
170
171                 </plugins>
172
173         </build>
174         <modules>
175                 <module>dblib</module>
176                 <module>filters</module>
177                 <module>sli</module>
178                 <module>sliPluginUtils</module>
179                 <module>sliapi</module>
180         </modules>
181         <organization>
182                 <name>OpenECOMP</name>
183         </organization>
184         <version>1.1.0-SNAPSHOT</version>
185
186
187 </project>