blob: dd03df773affebba123b6381f7d2a4d44303fe92 [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">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
Dan Timoney5de81962021-01-26 13:15:47 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney69baaeb2023-06-22 16:05:50 -04008 <version>2.6.0</version>
Dan Timoney8f2fcda2020-12-02 07:48:49 -05009 </parent>
10
11 <groupId>org.onap.ccsdk.sli.northbound</groupId>
Dan Timoney5de81962021-01-26 13:15:47 -050012 <artifactId>ccsdk-sli-northbound</artifactId>
Dan Timoney21e0eb92023-06-06 06:44:51 -040013 <version>1.7.0-SNAPSHOT</version>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050014 <packaging>pom</packaging>
15
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050016 <name>${project.artifactId}</name>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050017 <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description>
18 <url>https://wiki.onap.org</url>
19 <organization>
20 <name>ONAP</name>
21 </organization>
22
23 <modules>
24 <module>asdcApi</module>
25 <module>dataChange</module>
26 <module>lcm</module>
27 <module>dmaap-listener</module>
28 <module>ueb-listener</module>
29 <module>daexim-offsite-backup</module>
30 <module>features</module>
31 <module>artifacts</module>
32 </modules>
33
34 <scm>
35 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
36
37 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection>
38 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url>
39 </scm>
40 <issueManagement>
41 <system>JIRA</system>
42 <url>https://jira.onap.org/</url>
43 </issueManagement>
44 <ciManagement>
45 <system>Jenkins</system>
46 <url>https://jenkins.onap.org/</url>
47 </ciManagement>
48 <distributionManagement>
49 <site>
50 <id>sdnc-javadoc</id>
51 <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
52 </site>
53 </distributionManagement>
54
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
60 <configuration>
61 <skipTests>false</skipTests>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66
67 <profiles>
68 <profile>
69 <id>blackduck</id>
70 <activation>
71 <property>
72 <name>blackduck-scan</name>
73 </property>
74 </activation>
75 <build>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050076 <plugins>
77 <plugin>
78 <groupId>com.blackducksoftware.integration</groupId>
79 <artifactId>hub-maven-plugin</artifactId>
80 <version>1.4.0</version>
81 <inherited>false</inherited>
82 <configuration>
83 <hubProjectName>${project.name}</hubProjectName>
84 <outputDirectory>${project.basedir}</outputDirectory>
85 </configuration>
86 <executions>
87 <execution>
88 <id>create-bdio-file</id>
89 <phase>package</phase>
90 <goals>
91 <goal>createHubOutput</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96 </plugins>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050097
98 </build>
99
100 </profile>
101 <profile>
102 <id>dependency-list</id>
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>com.github.ferstl</groupId>
107 <artifactId>depgraph-maven-plugin</artifactId>
108 <executions>
109 <execution>
110 <phase>validate</phase>
111 <inherited>false</inherited>
112 <goals>
113 <goal>aggregate</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
118 <plugin>
119 <groupId>org.codehaus.mojo</groupId>
120 <artifactId>build-helper-maven-plugin</artifactId>
121 <executions>
122 <execution>
123 <id>attach-artifacts</id>
124 <phase>package</phase>
125 <inherited>false</inherited>
126 <goals>
127 <goal>attach-artifact</goal>
128 </goals>
129 <configuration>
130 <artifacts>
131 <artifact>
132 <file>${dependency-list.file}</file>
133 <type>txt</type>
134 <classifier>dependencies</classifier>
135 </artifact>
136 </artifacts>
137 </configuration>
138 </execution>
139 </executions>
140 </plugin>
141 </plugins>
142 </build>
143 </profile>
144 </profiles>
145</project>