Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <packaging>pom</packaging> |
Dan Timoney | c95543b | 2017-07-21 10:45:06 -0400 | [diff] [blame] | 6 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Dan Timoney | c4d6e36 | 2017-08-29 08:41:38 -0400 | [diff] [blame] | 7 | <artifactId>ccsdk-sli-core</artifactId> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 8 | |
Jessica Wagantall | 03332a1 | 2017-09-08 14:49:09 -0700 | [diff] [blame] | 9 | <name>ccsdk-sli-core</name> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 10 | <url>https://wiki.onap.org</url> |
Marcus G K Williams | 18ba1ed | 2017-09-01 14:56:46 -0700 | [diff] [blame] | 11 | <description>CCSDK core components contains the SLI, dblib</description> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 12 | |
| 13 | <parent> |
| 14 | <groupId>org.onap.ccsdk.parent</groupId> |
Dan Timoney | f84d3ea | 2017-08-11 20:12:41 -0400 | [diff] [blame] | 15 | <artifactId>odlparent-carbon-sr1</artifactId> |
Dan Timoney | 226929e | 2017-11-20 15:10:26 -0500 | [diff] [blame^] | 16 | <version>0.2.0-SNAPSHOT</version> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 17 | </parent> |
| 18 | |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 19 | <scm> |
| 20 | <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection> |
| 21 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-core.git</developerConnection> |
| 22 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-core/browse</url> |
| 23 | <tag>sdnc-core-1.1.0</tag> |
| 24 | </scm> |
| 25 | |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 26 | |
Dan Timoney | 871e2b1 | 2017-09-14 16:16:12 -0400 | [diff] [blame] | 27 | <!-- |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 28 | <distributionManagement> |
Dan Timoney | e72db85 | 2017-07-21 08:34:58 -0400 | [diff] [blame] | 29 | <repository> |
| 30 | <id>ecomp-releases</id> |
| 31 | <name>onap-repository-releases</name> |
| 32 | <url>${onap.nexus.release-url}</url> |
| 33 | </repository> |
| 34 | <snapshotRepository> |
| 35 | <id>ecomp-snapshots</id> |
| 36 | <name>onap-repository-snapshots</name> |
| 37 | <url>${onap.nexus.snapshot-url}</url> |
| 38 | </snapshotRepository> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 39 | <site> |
| 40 | <id>ecomp-site</id> |
| 41 | <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/core/${project.artifactId}/${project.version}</url> |
| 42 | </site> |
| 43 | </distributionManagement> |
Dan Timoney | 871e2b1 | 2017-09-14 16:16:12 -0400 | [diff] [blame] | 44 | --> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 45 | |
| 46 | <profiles> |
| 47 | <profile> |
| 48 | <id>blackduck</id> |
| 49 | <activation> |
| 50 | <property> |
| 51 | <name>blackduck-scan</name> |
| 52 | </property> |
| 53 | </activation> |
| 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>com.blackducksoftware.integration</groupId> |
| 58 | <artifactId>hub-maven-plugin</artifactId> |
| 59 | <version>1.4.0</version> |
| 60 | <inherited>false</inherited> |
| 61 | <configuration> |
| 62 | <hubProjectName>${project.name}</hubProjectName> |
| 63 | <outputDirectory>${project.basedir}</outputDirectory> |
| 64 | </configuration> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <id>create-bdio-file</id> |
| 68 | <phase>package</phase> |
| 69 | <goals> |
| 70 | <goal>createHubOutput</goal> |
| 71 | </goals> |
| 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | |
| 77 | |
| 78 | |
| 79 | </build> |
| 80 | |
| 81 | </profile> |
| 82 | |
| 83 | </profiles> |
| 84 | |
| 85 | <build> |
| 86 | <plugins> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 87 | |
| 88 | <plugin> |
| 89 | <groupId>org.apache.maven.plugins</groupId> |
| 90 | <artifactId>maven-surefire-plugin</artifactId> |
| 91 | <version>2.17</version> |
| 92 | <configuration> |
Marcus G K Williams | 0d63d99 | 2017-09-01 15:44:56 -0700 | [diff] [blame] | 93 | <skipTests>false</skipTests> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 94 | </configuration> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.sonatype.plugins</groupId> |
| 98 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 99 | <version>1.6.7</version> |
| 100 | <extensions>true</extensions> |
| 101 | <configuration> |
| 102 | <nexusUrl>https://${onap.nexus.host}</nexusUrl> |
| 103 | <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId> |
| 104 | <serverId>${onap.nexus.staging.server-id}</serverId> |
| 105 | </configuration> |
| 106 | </plugin> |
| 107 | |
| 108 | </plugins> |
| 109 | |
| 110 | </build> |
| 111 | <modules> |
Dan Timoney | 37d6468 | 2017-09-21 16:07:02 -0400 | [diff] [blame] | 112 | <module>utils</module> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 113 | <module>dblib</module> |
| 114 | <module>sli</module> |
| 115 | <module>filters</module> |
| 116 | <module>sliPluginUtils</module> |
| 117 | <module>sliapi</module> |
| 118 | </modules> |
| 119 | <organization> |
Dan Timoney | 68eeb04 | 2017-08-11 15:57:21 -0400 | [diff] [blame] | 120 | <name>ONAP</name> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 121 | </organization> |
Jessica Wagantall | 9cf0a1e | 2017-11-17 16:51:44 -0800 | [diff] [blame] | 122 | <version>0.2.0-SNAPSHOT</version> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 123 | |
| 124 | |
| 125 | </project> |