Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 4 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
Dan Timoney | 4b4fa3e | 2017-08-14 14:54:46 -0400 | [diff] [blame] | 7 | <artifactId>odlparent-carbon-sr1</artifactId> |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 8 | <version>0.0.1-SNAPSHOT</version> |
| 9 | </parent> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 10 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <packaging>pom</packaging> |
| 13 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 14 | <artifactId>sdnc-adaptors</artifactId> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 15 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 16 | <name>SDN-C Adaptors</name> |
| 17 | <url>https://wiki.openecomp.org</url> |
| 18 | <description>The SDN-C core components contains the SLI, dblib and root pom</description> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 19 | |
| 20 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 21 | <issueManagement> |
| 22 | <system>JIRA</system> |
| 23 | <url>https://jira.openecomp.org/</url> |
| 24 | </issueManagement> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 25 | |
| 26 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 27 | <scm> |
| 28 | <connection>scm:git:ssh://git@${openecomp.git.host}/sdnc-adaptors.git</connection> |
| 29 | <developerConnection>scm:git:ssh://${openecomp.git.host}:${openecomp.git.port}/${openecomp.git.project}/sdnc-adaptors.git</developerConnection> |
| 30 | <url>${openecomp.git.protocol}://${openecomp.git.host}/projects/${openecomp.git.project}/repos/sdnc-adaptors/browse</url> |
| 31 | </scm> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 32 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 33 | <ciManagement> |
| 34 | <system>Jenkins</system> |
| 35 | <url>https://jenkins.openecomp.org/</url> |
| 36 | </ciManagement> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 37 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 38 | <distributionManagement> |
| 39 | <site> |
| 40 | <id>sdnc-javadoc</id> |
| 41 | <url>dav:https://${openecomp.nexus.host}/content/sites/site/org/onap/sdnc/adaptors/${project.artifactId}/${project.version}</url> |
| 42 | </site> |
| 43 | </distributionManagement> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 44 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 45 | <profiles> |
| 46 | <profile> |
| 47 | <id>blackduck</id> |
| 48 | <activation> |
| 49 | <property> |
| 50 | <name>blackduck-scan</name> |
| 51 | </property> |
| 52 | </activation> |
| 53 | <build> |
| 54 | <plugins> |
| 55 | <plugin> |
| 56 | <groupId>com.blackducksoftware.integration</groupId> |
| 57 | <artifactId>hub-maven-plugin</artifactId> |
| 58 | <version>1.4.0</version> |
| 59 | <inherited>false</inherited> |
| 60 | <configuration> |
| 61 | <hubProjectName>${project.name}</hubProjectName> |
| 62 | <outputDirectory>${project.basedir}</outputDirectory> |
| 63 | </configuration> |
| 64 | <executions> |
| 65 | <execution> |
| 66 | <id>create-bdio-file</id> |
| 67 | <phase>package</phase> |
| 68 | <goals> |
| 69 | <goal>createHubOutput</goal> |
| 70 | </goals> |
| 71 | </execution> |
| 72 | </executions> |
| 73 | </plugin> |
| 74 | </plugins> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 75 | |
| 76 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 77 | </build> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 78 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 79 | </profile> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 80 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 81 | </profiles> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 82 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 83 | <build> |
| 84 | <plugins> |
| 85 | <plugin> |
| 86 | <groupId>org.apache.maven.plugins</groupId> |
| 87 | <artifactId>maven-surefire-plugin</artifactId> |
| 88 | <version>2.17</version> |
| 89 | <configuration> |
| 90 | <skipTests>true</skipTests> |
| 91 | </configuration> |
| 92 | </plugin> |
| 93 | <plugin> |
| 94 | <groupId>org.sonatype.plugins</groupId> |
| 95 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 96 | <version>1.6.7</version> |
| 97 | <extensions>true</extensions> |
| 98 | <configuration> |
| 99 | <nexusUrl>https://${openecomp.nexus.host}</nexusUrl> |
| 100 | <stagingProfileId>${openecomp.nexus.staging.profile-id}</stagingProfileId> |
| 101 | <serverId>${openecomp.nexus.staging.server-id}</serverId> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 105 | |
Marcus G K Williams | 806052b | 2017-08-02 15:09:24 -0700 | [diff] [blame] | 106 | </build> |
| 107 | <modules> |
| 108 | <module>aai-service</module> |
| 109 | <module>mdsal-resource</module> |
| 110 | <module>resource-assignment</module> |
| 111 | <module>sql-resource</module> |
| 112 | </modules> |
| 113 | <organization> |
| 114 | <name>OpenECOMP</name> |
| 115 | </organization> |
Dan Timoney | 4b4fa3e | 2017-08-14 14:54:46 -0400 | [diff] [blame] | 116 | <version>0.1.0-SNAPSHOT</version> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 117 | |
| 118 | |
| 119 | </project> |