blob: c9ba92edebffff2326a74f342d41f6a2807c255e [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">
Dan Timoneyf20174d2020-08-10 14:09:14 -04003 <modelVersion>4.0.0</modelVersion>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05004
Dan Timoneyf20174d2020-08-10 14:09:14 -04005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney685e02a2021-01-12 17:33:19 -05008 <version>2.0.5</version>
Dan Timoneyf20174d2020-08-10 14:09:14 -04009 <relativePath/>
10 </parent>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050011
Dan Timoneyf20174d2020-08-10 14:09:14 -040012 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>sdnc-oam</artifactId>
Piotr Marcinkiewiczeba69282021-02-24 08:26:27 +010014 <version>2.0.7-SNAPSHOT</version>
Dan Timoneyf20174d2020-08-10 14:09:14 -040015 <packaging>pom</packaging>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050016
Dan Timoneyf20174d2020-08-10 14:09:14 -040017 <name>sdnc-oam</name>
18 <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description>
19 <url>https://wiki.onap.org</url>
20 <organization>
21 <name>AT&amp;T</name>
22 </organization>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050023
Dan Timoneyf20174d2020-08-10 14:09:14 -040024 <modules>
25 <module>platform-logic</module>
26 <module>data-migrator</module>
27 </modules>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050028
Dan Timoneyf20174d2020-08-10 14:09:14 -040029 <scm>
Dan Timoney98ddb132017-09-01 17:40:45 -040030 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-oam.git</connection>
31 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-oam.git</developerConnection>
32 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-oam/browse</url>
Dan Timoneyf20174d2020-08-10 14:09:14 -040033 <tag>HEAD</tag>
34 </scm>
35 <issueManagement>
36 <system>JIRA</system>
37 <url>https://jira.onap.org/</url>
38 </issueManagement>
39 <ciManagement>
40 <system>Jenkins</system>
41 <url>https://jenkins.onap.org/</url>
42 </ciManagement>
43 <distributionManagement>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050044 <site>
Dan Timoney9e9f9642017-04-24 14:48:08 -040045 <id>sdnc-javadoc</id>
Dan Timoney98ddb132017-09-01 17:40:45 -040046 <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 -050047 </site>
48 </distributionManagement>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050049
Dan Timoneyf20174d2020-08-10 14:09:14 -040050 <dependencies>
51 <dependency>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-api</artifactId>
54 <version>1.7.25</version>
55 </dependency>
56 </dependencies>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050057
Dan Timoneyf20174d2020-08-10 14:09:14 -040058 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-surefire-plugin</artifactId>
63 <version>2.17</version>
64 <configuration>
65 <skipTests>false</skipTests>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
71 <profiles>
72 <profile>
73 <id>blackduck</id>
74 <activation>
75 <property>
76 <name>blackduck-scan</name>
77 </property>
78 </activation>
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>com.blackducksoftware.integration</groupId>
83 <artifactId>hub-maven-plugin</artifactId>
84 <version>1.4.0</version>
85 <inherited>false</inherited>
86 <configuration>
87 <hubProjectName>${project.name}</hubProjectName>
88 <outputDirectory>${project.basedir}</outputDirectory>
89 </configuration>
90 <executions>
91 <execution>
92 <id>create-bdio-file</id>
93 <phase>package</phase>
94 <goals>
95 <goal>createHubOutput</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -0500101
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -0500102
Dan Timoneyf20174d2020-08-10 14:09:14 -0400103 </build>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -0500104
Dan Timoneyf20174d2020-08-10 14:09:14 -0400105 </profile>
106 <profile>
107 <id>docker</id>
108 <modules>
109 <module>installation</module>
110 </modules>
111 </profile>
Timoney, Daniel (dt5972)eaa55e32017-02-21 09:40:28 -0500112
Dan Timoneyf20174d2020-08-10 14:09:14 -0400113 </profiles>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500114</project>