Release version 1.1.0 of sli/northbound
[ccsdk/sli/northbound.git] / pom.xml
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/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>2.1.0</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.northbound</groupId>
12     <artifactId>ccsdk-sli-northbound</artifactId>
13     <version>1.1.1-SNAPSHOT</version>
14     <packaging>pom</packaging>
15
16     <name>ccsdk-sli-northbound</name>
17     <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>
76                     <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>
97
98
99             </build>
100
101         </profile>
102         <profile>
103             <id>dependency-list</id>
104             <build>
105                 <plugins>
106                     <plugin>
107                         <groupId>com.github.ferstl</groupId>
108                         <artifactId>depgraph-maven-plugin</artifactId>
109                         <executions>
110                             <execution>
111                                 <phase>validate</phase>
112                                 <inherited>false</inherited>
113                                 <goals>
114                                     <goal>aggregate</goal>
115                                 </goals>
116                             </execution>
117                         </executions>
118                     </plugin>
119                     <plugin>
120                         <groupId>org.codehaus.mojo</groupId>
121                         <artifactId>build-helper-maven-plugin</artifactId>
122                         <executions>
123                             <execution>
124                                 <id>attach-artifacts</id>
125                                 <phase>package</phase>
126                                 <inherited>false</inherited>
127                                 <goals>
128                                     <goal>attach-artifact</goal>
129                                 </goals>
130                                 <configuration>
131                                     <artifacts>
132                                         <artifact>
133                                             <file>${dependency-list.file}</file>
134                                             <type>txt</type>
135                                             <classifier>dependencies</classifier>
136                                         </artifact>
137                                     </artifacts>
138                                 </configuration>
139                             </execution>
140                         </executions>
141                     </plugin>
142                 </plugins>
143             </build>
144         </profile>
145     </profiles>
146 </project>