Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Dan Timoney | 1027b0c | 2017-08-15 15:18:54 -0400 | [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/maven-v4_0_0.xsd"> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 3 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 4 | <parent> |
| 5 | <groupId>org.onap.ccsdk.parent</groupId> |
| 6 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | b9de9b7 | 2019-08-28 13:15:08 -0400 | [diff] [blame] | 7 | <version>1.4.1-SNAPSHOT</version> |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 8 | </parent> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 9 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 10 | <modelVersion>4.0.0</modelVersion> |
| 11 | <packaging>pom</packaging> |
| 12 | <groupId>org.onap.ccsdk.sli.northbound</groupId> |
| 13 | <artifactId>ccsdk-sli-northbound</artifactId> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 14 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 15 | <name>ccsdk-sli-northbound</name> |
| 16 | <url>https://wiki.onap.org</url> |
| 17 | <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 18 | |
| 19 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 20 | <issueManagement> |
| 21 | <system>JIRA</system> |
| 22 | <url>https://jira.onap.org/</url> |
| 23 | </issueManagement> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 24 | |
| 25 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 26 | <scm> |
| 27 | <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 28 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 29 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection> |
| 30 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url> |
| 31 | </scm> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 32 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 33 | <ciManagement> |
| 34 | <system>Jenkins</system> |
| 35 | <url>https://jenkins.onap.org/</url> |
| 36 | </ciManagement> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 37 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 38 | <distributionManagement> |
| 39 | <site> |
| 40 | <id>sdnc-javadoc</id> |
| 41 | <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
| 42 | </site> |
| 43 | </distributionManagement> |
| 44 | <profiles> |
| 45 | <profile> |
| 46 | <id>blackduck</id> |
| 47 | <activation> |
| 48 | <property> |
| 49 | <name>blackduck-scan</name> |
| 50 | </property> |
| 51 | </activation> |
| 52 | <build> |
| 53 | <plugins> |
| 54 | <plugin> |
| 55 | <groupId>com.blackducksoftware.integration</groupId> |
| 56 | <artifactId>hub-maven-plugin</artifactId> |
| 57 | <version>1.4.0</version> |
| 58 | <inherited>false</inherited> |
| 59 | <configuration> |
| 60 | <hubProjectName>${project.name}</hubProjectName> |
| 61 | <outputDirectory>${project.basedir}</outputDirectory> |
| 62 | </configuration> |
| 63 | <executions> |
| 64 | <execution> |
| 65 | <id>create-bdio-file</id> |
| 66 | <phase>package</phase> |
| 67 | <goals> |
| 68 | <goal>createHubOutput</goal> |
| 69 | </goals> |
| 70 | </execution> |
| 71 | </executions> |
| 72 | </plugin> |
| 73 | </plugins> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 74 | |
| 75 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 76 | </build> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 77 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 78 | </profile> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 79 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 80 | </profiles> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 81 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 82 | <build> |
| 83 | <plugins> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-surefire-plugin</artifactId> |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 87 | <configuration> |
| 88 | <skipTests>false</skipTests> |
| 89 | </configuration> |
| 90 | </plugin> |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 91 | </plugins> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 92 | |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 93 | </build> |
| 94 | <modules> |
| 95 | <module>asdcApi</module> |
| 96 | <module>dataChange</module> |
| 97 | <module>lcm</module> |
| 98 | <module>dmaap-listener</module> |
| 99 | <module>ueb-listener</module> |
Haddox, Anthony | 50bd4a0 | 2019-01-16 08:08:35 -0800 | [diff] [blame] | 100 | <module>daexim-offsite-backup</module> |
Timoney, Dan (dt5972) | feb6325 | 2019-01-08 12:29:46 -0500 | [diff] [blame] | 101 | <module>features</module> |
| 102 | <module>artifacts</module> |
| 103 | </modules> |
| 104 | <organization> |
| 105 | <name>ONAP</name> |
| 106 | </organization> |
Timoney, Dan (dt5972) | b9de9b7 | 2019-08-28 13:15:08 -0400 | [diff] [blame] | 107 | <version>0.6.1-SNAPSHOT</version> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 108 | |
| 109 | |
| 110 | </project> |