Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -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 | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 7 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | da6f113 | 2018-10-22 09:32:19 -0400 | [diff] [blame] | 8 | <version>1.2.0-SNAPSHOT</version> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 9 | <relativePath/> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 10 | </parent> |
| 11 | |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 13 | <artifactId>ccsdk-sli-core</artifactId> |
Timoney, Dan (dt5972) | da6f113 | 2018-10-22 09:32:19 -0400 | [diff] [blame] | 14 | <version>0.4.0-SNAPSHOT</version> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <name>ccsdk-sli-core</name> |
| 18 | <description>CCSDK core components contains the SLI, dblib</description> |
| 19 | <url>https://wiki.onap.org</url> |
| 20 | <organization> |
| 21 | <name>ONAP</name> |
| 22 | </organization> |
Timoney, Dan (dt5972) | 0d5be9d | 2018-08-13 14:55:59 -0400 | [diff] [blame] | 23 | |
| 24 | <properties> |
| 25 | <sitePath>content/sites/site/org/onap/ccsdk/sli/core/${project.version}/</sitePath> |
| 26 | </properties> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 27 | |
| 28 | <modules> |
| 29 | <module>utils</module> |
| 30 | <module>dblib</module> |
| 31 | <module>sli</module> |
| 32 | <module>filters</module> |
| 33 | <module>sliPluginUtils</module> |
| 34 | <module>sliapi</module> |
Timoney, Dan (dt5972) | 84eab50 | 2018-06-22 15:48:39 -0400 | [diff] [blame] | 35 | <module>features</module> |
Dan Timoney | 131cb46 | 2018-02-01 16:57:00 -0500 | [diff] [blame] | 36 | </modules> |
| 37 | |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 38 | <scm> |
| 39 | <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection> |
| 40 | <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-core.git</developerConnection> |
| 41 | <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-core/browse</url> |
| 42 | <tag>sdnc-core-1.1.0</tag> |
| 43 | </scm> |
| 44 | |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 45 | |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 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> |
Timoney, Dan (dt5972) | 0d5be9d | 2018-08-13 14:55:59 -0400 | [diff] [blame] | 84 | <distributionManagement> |
| 85 | <site> |
| 86 | <id>ecomp-site</id> |
| 87 | <url>dav:${onap.nexus.url}/${sitePath}</url> |
| 88 | </site> |
| 89 | </distributionManagement> |
Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame] | 90 | </project> |