blob: aa05c648170fc9f5af1c0443a9315fa9547837c4 [file] [log] [blame]
Dan Timoney2a93b9d2017-07-18 19:40:01 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney131cb462018-02-01 16:57:00 -05002<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 Timoney2a93b9d2017-07-18 19:40:01 -04003 <modelVersion>4.0.0</modelVersion>
Dan Timoney2a93b9d2017-07-18 19:40:01 -04004
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
Dan Timoney131cb462018-02-01 16:57:00 -05007 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)da6f1132018-10-22 09:32:19 -04008 <version>1.2.0-SNAPSHOT</version>
Dan Timoney131cb462018-02-01 16:57:00 -05009 <relativePath/>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040010 </parent>
11
Dan Timoney131cb462018-02-01 16:57:00 -050012 <groupId>org.onap.ccsdk.sli.core</groupId>
13 <artifactId>ccsdk-sli-core</artifactId>
Timoney, Dan (dt5972)da6f1132018-10-22 09:32:19 -040014 <version>0.4.0-SNAPSHOT</version>
Dan Timoney131cb462018-02-01 16:57:00 -050015 <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)0d5be9d2018-08-13 14:55:59 -040023
24 <properties>
25 <sitePath>content/sites/site/org/onap/ccsdk/sli/core/${project.version}/</sitePath>
26 </properties>
Dan Timoney131cb462018-02-01 16:57:00 -050027
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)84eab502018-06-22 15:48:39 -040035 <module>features</module>
Dan Timoney131cb462018-02-01 16:57:00 -050036 </modules>
37
Dan Timoney2a93b9d2017-07-18 19:40:01 -040038 <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 Timoney2a93b9d2017-07-18 19:40:01 -040045
Dan Timoney2a93b9d2017-07-18 19:40:01 -040046 <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)0d5be9d2018-08-13 14:55:59 -040084 <distributionManagement>
85 <site>
86 <id>ecomp-site</id>
87 <url>dav:${onap.nexus.url}/${sitePath}</url>
88 </site>
89 </distributionManagement>
Dan Timoney2a93b9d2017-07-18 19:40:01 -040090</project>