Merge "Add aria-labels"
[ccsdk/features.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7   ~ ================================================================================
8   ~ Licensed under the Apache License, Version 2.0 (the "License");
9   ~ you may not use this file except in compliance with the License.
10   ~ You may obtain a copy of the License at
11   ~
12   ~     http://www.apache.org/licenses/LICENSE-2.0
13   ~
14   ~ Unless required by applicable law or agreed to in writing, software
15   ~ distributed under the License is distributed on an "AS IS" BASIS,
16   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   ~ See the License for the specific language governing permissions and
18   ~ limitations under the License.
19   ~ ============LICENSE_END=======================================================
20   ~
21   -->
22
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.ccsdk.parent</groupId>
28         <artifactId>odlparent-lite</artifactId>
29         <version>2.1.0</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features</groupId>
34     <artifactId>ccsdk-features</artifactId>
35     <version>1.1.1-SNAPSHOT</version>
36     <packaging>pom</packaging>
37
38     <name>ccsdk-features</name>
39     <description>CCSDK applications</description>
40     <url>https://wiki.onap.org</url>
41     <organization>
42         <name>ONAP</name>
43     </organization>
44
45     <modules>
46         <module>features</module>
47         <module>sdnr/wt</module>
48         <module>sdnr/northbound</module>
49         <module>aafshiro</module>
50         <module>lib/rlock</module>
51         <module>lib/doorman</module>
52     </modules>
53
54     <scm>
55         <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
56         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
57         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
58     </scm>
59
60     <profiles>
61         <profile>
62             <id>blackduck</id>
63             <activation>
64                 <property>
65                     <name>blackduck-scan</name>
66                 </property>
67             </activation>
68             <build>
69                 <plugins>
70                     <plugin>
71                         <groupId>com.blackducksoftware.integration</groupId>
72                         <artifactId>hub-maven-plugin</artifactId>
73                         <version>1.4.0</version>
74                         <inherited>false</inherited>
75                         <configuration>
76                             <hubProjectName>${project.name}</hubProjectName>
77                             <outputDirectory>${project.basedir}</outputDirectory>
78                         </configuration>
79                         <executions>
80                             <execution>
81                                 <id>create-bdio-file</id>
82                                 <phase>package</phase>
83                                 <goals>
84                                     <goal>createHubOutput</goal>
85                                 </goals>
86                             </execution>
87                         </executions>
88                     </plugin>
89                 </plugins>
90             </build>
91         </profile>
92         <profile>
93             <id>dependency-list</id>
94             <build>
95                 <plugins>
96                     <plugin>
97                         <groupId>com.github.ferstl</groupId>
98                         <artifactId>depgraph-maven-plugin</artifactId>
99                         <executions>
100                             <execution>
101                                 <phase>validate</phase>
102                                 <inherited>false</inherited>
103                                 <goals>
104                                     <goal>aggregate</goal>
105                                 </goals>
106                             </execution>
107                         </executions>
108                     </plugin>
109                     <plugin>
110                         <groupId>org.codehaus.mojo</groupId>
111                         <artifactId>build-helper-maven-plugin</artifactId>
112                         <executions>
113                             <execution>
114                                 <id>attach-artifacts</id>
115                                 <phase>package</phase>
116                                 <inherited>false</inherited>
117                                 <goals>
118                                     <goal>attach-artifact</goal>
119                                 </goals>
120                                 <configuration>
121                                     <artifacts>
122                                         <artifact>
123                                             <file>${dependency-list.file}</file>
124                                             <type>txt</type>
125                                             <classifier>dependencies</classifier>
126                                         </artifact>
127                                     </artifacts>
128                                 </configuration>
129                             </execution>
130                         </executions>
131                     </plugin>
132                 </plugins>
133             </build>
134         </profile>
135     </profiles>
136 </project>