Cleanup project's name in Sonar
[sdnc/oam.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         <parent>
6                 <groupId>org.openecomp.sdnc.core</groupId>
7                 <artifactId>root-boron-sr1</artifactId>
8                 <version>1.1.0</version>
9         </parent>
10
11         <modelVersion>4.0.0</modelVersion>
12         <packaging>pom</packaging>
13         <groupId>org.openecomp.sdnc.oam</groupId>
14         <artifactId>sdnc-oam</artifactId>
15
16         <name>sdnc-oam</name>
17         <url>https://wiki.openecomp.org</url>
18         <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description>
19
20
21         <issueManagement>
22                 <system>JIRA</system>
23                 <url>https://jira.openecomp.org/</url>
24         </issueManagement>
25
26         <scm>
27                 <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-oam.git</connection>
28                 <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-oam.git</developerConnection>
29                 <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-oam/browse</url>
30                 <tag>HEAD</tag>
31         </scm>
32
33         <ciManagement>
34                 <system>Jenkins</system>
35                 <url>https://jenkins.openecomp.org/</url>
36         </ciManagement>
37
38     <distributionManagement>
39         <site>
40           <id>sdnc-javadoc</id>
41           <url>dav:https://${openecomp.nexus.host}:${openecomp.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
42         </site>
43     </distributionManagement>
44         <profiles>
45                 <profile>
46                         <id>blackduck</id>
47                         <activation>
48                                 <property>
49                                         <name>blackduck-scan</name>
50                                 </property>
51                         </activation>
52                         <build>
53                                         <plugins>
54                                                 <plugin>
55                                                         <groupId>com.blackducksoftware.integration</groupId>
56                                                         <artifactId>hub-maven-plugin</artifactId>
57                                                         <version>1.4.0</version>
58                                                         <inherited>false</inherited>
59                                                         <configuration>
60                                                                 <hubProjectName>${project.name}</hubProjectName>
61                                                                 <outputDirectory>${project.basedir}</outputDirectory>
62                                                         </configuration>
63                                                         <executions>
64                                                                 <execution>
65                                                                         <id>create-bdio-file</id>
66                                                                         <phase>package</phase>
67                                                                         <goals>
68                                                                                 <goal>createHubOutput</goal>
69                                                                         </goals>
70                                                                 </execution>
71                                                         </executions>
72                                                 </plugin>
73                                         </plugins>
74
75
76                         </build>
77
78                 </profile>
79                 <profile>
80                   <id>docker</id>
81                   <modules>
82                         <module>installation</module>
83                   </modules>
84                 </profile>
85
86         </profiles>
87
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.apache.maven.plugins</groupId>
92                                 <artifactId>maven-surefire-plugin</artifactId>
93                                 <version>2.17</version>
94                                 <configuration>
95                                         <skipTests>true</skipTests>
96                                 </configuration>
97                         </plugin>
98                         <plugin>
99                                 <groupId>org.sonatype.plugins</groupId>
100                                 <artifactId>nexus-staging-maven-plugin</artifactId>
101                                 <version>1.6.7</version>
102                                 <extensions>true</extensions>
103                                 <configuration>
104                                         <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
105                                         <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId>
106                                         <serverId>${openecomp.nexus.staging.server-id}</serverId>
107                                 </configuration>
108                         </plugin>
109                 </plugins>
110
111         </build>
112         <modules>
113                 <module>admportal</module>
114                 <module>dgbuilder</module>
115                 <module>platform-logic</module>
116         </modules>
117
118         <organization>
119                 <name>AT&amp;T</name>
120         </organization>
121         <version>1.1.2-SNAPSHOT</version>
122
123
124 </project>