Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 2 | <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 Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 4 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 685e02a | 2021-01-12 17:33:19 -0500 | [diff] [blame] | 8 | <version>2.0.5</version> |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 11 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 12 | <groupId>org.onap.sdnc.oam</groupId> |
| 13 | <artifactId>sdnc-oam</artifactId> |
Piotr Marcinkiewicz | eba6928 | 2021-02-24 08:26:27 +0100 | [diff] [blame^] | 14 | <version>2.0.7-SNAPSHOT</version> |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 15 | <packaging>pom</packaging> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 16 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 17 | <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&T</name> |
| 22 | </organization> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 23 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 24 | <modules> |
| 25 | <module>platform-logic</module> |
| 26 | <module>data-migrator</module> |
| 27 | </modules> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 28 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 29 | <scm> |
Dan Timoney | 98ddb13 | 2017-09-01 17:40:45 -0400 | [diff] [blame] | 30 | <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 Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 33 | <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) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 44 | <site> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 45 | <id>sdnc-javadoc</id> |
Dan Timoney | 98ddb13 | 2017-09-01 17:40:45 -0400 | [diff] [blame] | 46 | <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 47 | </site> |
| 48 | </distributionManagement> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 49 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 50 | <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) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 57 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 58 | <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) | eaa55e3 | 2017-02-21 09:40:28 -0500 | [diff] [blame] | 101 | |
Timoney, Daniel (dt5972) | eaa55e3 | 2017-02-21 09:40:28 -0500 | [diff] [blame] | 102 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 103 | </build> |
Timoney, Daniel (dt5972) | eaa55e3 | 2017-02-21 09:40:28 -0500 | [diff] [blame] | 104 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 105 | </profile> |
| 106 | <profile> |
| 107 | <id>docker</id> |
| 108 | <modules> |
| 109 | <module>installation</module> |
| 110 | </modules> |
| 111 | </profile> |
Timoney, Daniel (dt5972) | eaa55e3 | 2017-02-21 09:40:28 -0500 | [diff] [blame] | 112 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 113 | </profiles> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 114 | </project> |