blob: 81142b3389f4c4e41e091a7e376d7697693ce61d [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)ff3d7be2017-03-15 09:39:53 +00008 <version>1.1.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>
Timoney, Daniel (dt5972)ff3d7be2017-03-15 09:39:53 +000015 <version>1.1.0-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050016
17 <name>SDN-C OAM</name>
18 <url>https://wiki.openecomp.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.openecomp.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.openecomp.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>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -050045 <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>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -050082 <profile>
83 <id>docker</id>
84 <modules>
85 <module>installation</module>
86 </modules>
87 </profile>
88
89 </profiles>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050090
91 <build>
92 <plugins>
Timoney, Daniel (dt5972)57716782017-02-21 03:48:05 -050093 <plugin>
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -050094 <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>
Timoney, Daniel (dt5972)94b542b2017-02-21 15:57:41 -0500101 <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>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500112 </plugins>
113
114 </build>
115 <modules>
116 <module>admportal</module>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500117 <module>platform-logic</module>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500118 </modules>
Timoney, Daniel (dt5972)6d831ce2017-02-20 11:13:38 -0500119
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500120 <organization>
121 <name>AT&amp;T</name>
122 </organization>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500123
124
125</project>