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 | |
| 4 | <parent> |
| 5 | <groupId>org.onap.ccsdk.parent</groupId> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 6 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | 0f3fdfa | 2018-05-31 14:25:35 -0400 | [diff] [blame] | 7 | <version>1.0.4</version> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | |
| 10 | <modelVersion>4.0.0</modelVersion> |
| 11 | <packaging>pom</packaging> |
| 12 | <groupId>org.onap.ccsdk.sli.northbound</groupId> |
Dan Timoney | 64c695e | 2017-08-29 08:52:32 -0400 | [diff] [blame] | 13 | <artifactId>ccsdk-sli-northbound</artifactId> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 14 | |
Jessica Wagantall | 4493acc | 2017-09-08 13:17:30 -0700 | [diff] [blame] | 15 | <name>ccsdk-sli-northbound</name> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 16 | <url>https://wiki.onap.org</url> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 17 | <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description> |
| 18 | |
| 19 | |
| 20 | <issueManagement> |
| 21 | <system>JIRA</system> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 22 | <url>https://jira.onap.org/</url> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 23 | </issueManagement> |
| 24 | |
| 25 | |
| 26 | <scm> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 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 | |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [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> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 31 | </scm> |
| 32 | |
| 33 | <ciManagement> |
| 34 | <system>Jenkins</system> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 35 | <url>https://jenkins.onap.org/</url> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 36 | </ciManagement> |
| 37 | |
| 38 | <distributionManagement> |
| 39 | <site> |
| 40 | <id>sdnc-javadoc</id> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 41 | <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 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> |
| 74 | |
| 75 | |
| 76 | </build> |
| 77 | |
| 78 | </profile> |
| 79 | |
| 80 | </profiles> |
| 81 | |
| 82 | <build> |
| 83 | <plugins> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-surefire-plugin</artifactId> |
| 87 | <version>2.17</version> |
| 88 | <configuration> |
Marcus G K Williams | 3a7d07a | 2017-09-01 16:01:07 -0700 | [diff] [blame] | 89 | <skipTests>false</skipTests> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 90 | </configuration> |
| 91 | </plugin> |
| 92 | <plugin> |
| 93 | <groupId>org.sonatype.plugins</groupId> |
| 94 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 95 | <version>1.6.7</version> |
| 96 | <extensions>true</extensions> |
| 97 | <configuration> |
Marcus G K Williams | 85388e8 | 2017-09-05 18:19:11 -0700 | [diff] [blame] | 98 | <nexusUrl>https://${onap.nexus.host}</nexusUrl> |
| 99 | <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId> |
| 100 | <serverId>${onap.nexus.staging.server-id}</serverId> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 101 | </configuration> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | |
| 105 | </build> |
| 106 | <modules> |
| 107 | <module>asdcApi</module> |
| 108 | <module>dataChange</module> |
Timoney, Dan (dt5972) | b039682 | 2018-04-12 19:13:59 -0400 | [diff] [blame] | 109 | <module>lcm</module> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 110 | <module>dmaap-listener</module> |
| 111 | <module>ueb-listener</module> |
| 112 | </modules> |
| 113 | <organization> |
Dan Timoney | 10b6a72 | 2018-02-22 17:22:31 -0600 | [diff] [blame] | 114 | <name>ONAP</name> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 115 | </organization> |
Timoney, Dan (dt5972) | 08ce0be | 2018-05-30 18:12:11 -0400 | [diff] [blame] | 116 | <version>0.2.4-SNAPSHOT</version> |
Dan Timoney | ea5bf0a | 2017-07-18 20:32:15 -0400 | [diff] [blame] | 117 | |
| 118 | |
| 119 | </project> |