blob: 2e3c264e66bfe8cf71fa04c9697d28db2086b2f0 [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)6d831ce2017-02-20 11:13:38 -05008 <version>1.0.0-SNAPSHOT</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>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-surefire-plugin</artifactId>
71 <version>2.17</version>
72 <configuration>
73 <skipTests>true</skipTests>
74 </configuration>
75 </plugin>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050076 </plugins>
77
78 </build>
79 <modules>
80 <module>admportal</module>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050081 <module>platform-logic</module>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050082 </modules>
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -050083
84 <profiles>
85 <profile>
86 <id>docker</id>
87 <modules>
88 <module>installation</module>
89 </modules>
90 </profile>
91 </profiles>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050092 <organization>
93 <name>AT&amp;T</name>
94 </organization>
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -050095 <version>1.0.0-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050096
97
98</project>