blob: a67ca00d7da76517e4479794f583773fdceae953 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05004
5 <parent>
Dan Timoney98ddb132017-09-01 17:40:45 -04006 <groupId>org.onap.ccsdk.parent</groupId>
Timoney, Dan (dt5972)c84dc842018-04-24 09:06:57 -04007 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)48a2eaf2018-06-06 14:35:30 -04008 <version>1.1.0-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05009 </parent>
10
Dan Timoney98ddb132017-09-01 17:40:45 -040011 <groupId>org.onap.sdnc.oam</groupId>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050012 <artifactId>sdnc-oam</artifactId>
Timoney, Dan (dt5972)48a2eaf2018-06-06 14:35:30 -040013 <version>1.4.0-SNAPSHOT</version>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050014 <packaging>pom</packaging>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050015
Jessica Wagantall4bae6d02017-09-08 13:18:20 -070016 <name>sdnc-oam</name>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050017 <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050018 <url>https://wiki.onap.org</url>
19 <organization>
20 <name>AT&amp;T</name>
21 </organization>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050022
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050023 <modules>
24 <module>admportal</module>
25 <module>dgbuilder</module>
26 <module>platform-logic</module>
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +053027 <module>configbackuprestore</module>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053028 <module>SdncReports</module>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050029 </modules>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050030
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050031 <scm>
Dan Timoney98ddb132017-09-01 17:40:45 -040032 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-oam.git</connection>
33 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-oam.git</developerConnection>
34 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-oam/browse</url>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050035 <tag>HEAD</tag>
36 </scm>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050037 <issueManagement>
38 <system>JIRA</system>
39 <url>https://jira.onap.org/</url>
40 </issueManagement>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050041 <ciManagement>
42 <system>Jenkins</system>
Dan Timoney98ddb132017-09-01 17:40:45 -040043 <url>https://jenkins.onap.org/</url>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050044 </ciManagement>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050045 <distributionManagement>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050046 <site>
Dan Timoney9e9f9642017-04-24 14:48:08 -040047 <id>sdnc-javadoc</id>
Dan Timoney98ddb132017-09-01 17:40:45 -040048 <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050049 </site>
50 </distributionManagement>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050051
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-surefire-plugin</artifactId>
57 <version>2.17</version>
58 <configuration>
59 <skipTests>false</skipTests>
60 </configuration>
61 </plugin>
62 <plugin>
63 <groupId>org.sonatype.plugins</groupId>
64 <artifactId>nexus-staging-maven-plugin</artifactId>
65 <version>1.6.7</version>
66 <extensions>true</extensions>
67 <configuration>
68 <nexusUrl>https://${onap.nexus.host}</nexusUrl>
69 <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
70 <serverId>${onap.nexus.staging.server-id}</serverId>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
75
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -050076 <profiles>
77 <profile>
78 <id>blackduck</id>
79 <activation>
80 <property>
81 <name>blackduck-scan</name>
82 </property>
83 </activation>
84 <build>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -050085 <plugins>
86 <plugin>
87 <groupId>com.blackducksoftware.integration</groupId>
88 <artifactId>hub-maven-plugin</artifactId>
89 <version>1.4.0</version>
90 <inherited>false</inherited>
91 <configuration>
92 <hubProjectName>${project.name}</hubProjectName>
93 <outputDirectory>${project.basedir}</outputDirectory>
94 </configuration>
95 <executions>
96 <execution>
97 <id>create-bdio-file</id>
98 <phase>package</phase>
99 <goals>
100 <goal>createHubOutput</goal>
101 </goals>
102 </execution>
103 </executions>
104 </plugin>
105 </plugins>
106
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -0500107
108 </build>
109
110 </profile>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -0500111 <profile>
112 <id>docker</id>
113 <modules>
114 <module>installation</module>
115 </modules>
116 </profile>
117
118 </profiles>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500119</project>