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