Cleanup project's name in Sonar
[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         <name>sdnc-core</name>
11         <url>https://wiki.openecomp.org</url>
12         <description>The SDN-C core components contains the SLI, dblib and root pom</description>
13
14         <parent>
15                 <groupId>org.openecomp.sdnc.core</groupId>
16                 <artifactId>root</artifactId>
17                 <version>1.0.0</version>
18                 <relativePath>rootpom/pom.xml</relativePath>
19         </parent>
20
21
22         <issueManagement>
23                 <system>JIRA</system>
24                 <url>http://jira.openecomp.org/</url>
25         </issueManagement>
26
27
28         <scm>
29                 <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-code.git</connection>
30                 <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-core.git</developerConnection>
31                 <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-core/browse</url>
32                 <tag>HEAD</tag>
33         </scm>
34
35         <ciManagement>
36                 <system>Jenkins</system>
37                 <url>>https://jenkins.openecomp.org/</url>
38         </ciManagement>
39
40
41         <distributionManagement>
42                 <site>
43                         <id>sdnc-javadoc</id>
44                         <url>dav:https://${openecomp.nexus.host}:${openecomp.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
45                 </site>
46         </distributionManagement>
47
48
49         <profiles>
50                 <profile>
51                         <id>blackduck</id>
52                         <activation>
53                                 <property>
54                                         <name>blackduck-scan</name>
55                                 </property>
56                         </activation>
57                         <build>
58                                 <pluginManagement>
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                                 </pluginManagement>
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>rootpom</module>
176                 <module>dblib</module>
177                 <module>filters</module>
178                 <module>sli</module>
179                 <module>sliPluginUtils</module>
180                 <module>sliapi</module>
181         </modules>
182         <organization>
183                 <name>OpenECOMP</name>
184         </organization>
185         <version>1.0.0-SNAPSHOT</version>
186
187
188 </project>