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