blob: c645086b1ba09dfe13a174c7163871359263e40a [file] [log] [blame]
Dan Timoney8f2fcda2020-12-02 07:48:49 -05001<?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/xsd/maven-4.0.0.xsd">
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05003 <modelVersion>4.0.0</modelVersion>
Dan Timoney8f2fcda2020-12-02 07:48:49 -05004
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoneyb5a1f492022-11-07 13:38:17 -05008 <version>2.5.0</version>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05009 <relativePath/>
10 </parent>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050011
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050012 <groupId>org.onap.ccsdk.sli.core</groupId>
13 <artifactId>ccsdk-sli-core</artifactId>
Dan Timoneyef9ea4a2022-11-10 14:55:19 -050014 <version>1.6.1-SNAPSHOT</version>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050015 <packaging>pom</packaging>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050016
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050017 <name>${project.artifactId}</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>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050023
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050024 <modules>
Dan Timoney5de81962021-01-26 13:15:47 -050025 <module>utils</module>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050026 <module>dblib</module>
27 <module>sli</module>
28 <module>filters</module>
29 <module>sliPluginUtils</module>
30 <module>sliapi</module>
31 <module>features</module>
32 <module>artifacts</module>
33 </modules>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050034
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050035 <scm>
36 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection>
37 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-core.git</developerConnection>
38 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-core/browse</url>
39 <tag>sdnc-core-1.1.0</tag>
40 </scm>
41 <distributionManagement>
42 <site>
43 <id>ecomp-site</id>
44 <url>dav:${onap.nexus.url}/${sitePath}</url>
45 </site>
46 </distributionManagement>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050047
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050048 <properties>
49 <sitePath>content/sites/site/org/onap/ccsdk/sli/core/${project.version}/</sitePath>
50 </properties>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050051
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050052 <profiles>
53 <profile>
54 <id>blackduck</id>
55 <activation>
56 <property>
57 <name>blackduck-scan</name>
58 </property>
59 </activation>
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>com.blackducksoftware.integration</groupId>
64 <artifactId>hub-maven-plugin</artifactId>
65 <version>1.4.0</version>
66 <inherited>false</inherited>
67 <configuration>
68 <hubProjectName>${project.name}</hubProjectName>
69 <outputDirectory>${project.basedir}</outputDirectory>
70 </configuration>
71 <executions>
72 <execution>
73 <id>create-bdio-file</id>
74 <phase>package</phase>
75 <goals>
76 <goal>createHubOutput</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 </plugins>
82 </build>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050083
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050084 </profile>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050085
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050086 <profile>
87 <id>dependency-list</id>
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>com.github.ferstl</groupId>
92 <artifactId>depgraph-maven-plugin</artifactId>
93 <executions>
94 <execution>
95 <phase>validate</phase>
96 <inherited>false</inherited>
97 <goals>
98 <goal>aggregate</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin>
103 <plugin>
104 <groupId>org.codehaus.mojo</groupId>
105 <artifactId>build-helper-maven-plugin</artifactId>
106 <executions>
107 <execution>
108 <id>attach-artifacts</id>
109 <phase>package</phase>
110 <inherited>false</inherited>
111 <goals>
112 <goal>attach-artifact</goal>
113 </goals>
114 <configuration>
115 <artifacts>
116 <artifact>
117 <file>${dependency-list.file}</file>
118 <type>txt</type>
119 <classifier>dependencies</classifier>
120 </artifact>
121 </artifacts>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
126 </plugins>
127 </build>
128 </profile>
Dan Timoney8f2fcda2020-12-02 07:48:49 -0500129
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -0500130 </profiles>
Dan Timoney8f2fcda2020-12-02 07:48:49 -0500131</project>