blob: f0e3120c3d9882e192c7b3ccb0d5b000be036046 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?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>
Timoney, Daniel (dt5972)57716782017-02-21 03:48:05 -05008 <version>1.0.0</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05009 </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>SDN-C 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
45 <build>
46 <plugins>
47 <!-- Blackduck plugin breaks release build
48 <plugin>
49 <groupId>com.blackducksoftware.integration</groupId>
50 <artifactId>hub-maven-plugin</artifactId>
51 <version>1.4.0</version>
52 <inherited>false</inherited>
53 <configuration>
54 <hubProjectName>${project.name}</hubProjectName>
55 <outputDirectory>${project.basedir}</outputDirectory>
56 </configuration>
57 <executions>
58 <execution>
59 <id>create-bdio-file</id>
60 <phase>package</phase>
61 <goals>
62 <goal>createHubOutput</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 -->
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -050068 <plugin>
Timoney, Daniel (dt5972)57716782017-02-21 03:48:05 -050069 <groupId>org.sonatype.plugins</groupId>
70 <artifactId>nexus-staging-maven-plugin</artifactId>
71 <version>1.6.7</version>
72 <extensions>true</extensions>
73 <configuration>
74 <nexusUrl>https://nexus.openecomp.org</nexusUrl>
75 <stagingProfileId>176c31dfe190a</stagingProfileId>
76 <serverId>ecomp-staging</serverId>
77 </configuration>
78 </plugin>
79 <plugin>
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -050080 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-surefire-plugin</artifactId>
82 <version>2.17</version>
83 <configuration>
84 <skipTests>true</skipTests>
85 </configuration>
86 </plugin>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050087 </plugins>
88
89 </build>
90 <modules>
91 <module>admportal</module>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050092 <module>platform-logic</module>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050093 </modules>
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -050094
95 <profiles>
96 <profile>
97 <id>docker</id>
98 <modules>
99 <module>installation</module>
100 </modules>
101 </profile>
102 </profiles>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500103 <organization>
104 <name>AT&amp;T</name>
105 </organization>
Timoney, Daniel (dt5972)57716782017-02-21 03:48:05 -0500106 <version>1.0.0</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500107
108
109</project>