Align initial alarms and notifications parsing
[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 <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">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.ccsdk.parent</groupId>
27         <artifactId>odlparent-lite</artifactId>
28         <version>2.6.1</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features</groupId>
33     <artifactId>ccsdk-features</artifactId>
34     <version>1.7.0-SNAPSHOT</version>
35     <packaging>pom</packaging>
36
37     <name>ccsdk-features</name>
38     <description>CCSDK applications</description>
39     <url>https://wiki.onap.org</url>
40     <organization>
41         <name>ONAP</name>
42     </organization>
43
44     <modules>
45         <module>features</module>
46         <module>sdnr/wt</module>
47         <module>sdnr/wt-odlux</module>
48         <module>sdnr/northbound</module>
49         <module>aafshiro</module>
50         <module>lib/rlock</module>
51         <module>lib/doorman</module>
52         <module>lib/network-prioritization</module>
53     </modules>
54
55     <scm>
56         <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
57         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
58         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
59     </scm>
60
61     <build>
62         <pluginManagement>
63             <plugins>
64                 <plugin>
65                     <groupId>org.apache.maven.plugins</groupId>
66                     <artifactId>maven-compiler-plugin</artifactId>
67                     <version>${maven-compiler-plugin.version}</version>
68                     <configuration>
69                         <release>${java.version}</release>
70                         <!--explicitly remove source and target-->
71                         <source combine.self="override"/>
72                         <target combine.self="override"/>
73                     </configuration>
74                 </plugin>
75             </plugins>
76         </pluginManagement>
77     </build>
78
79     <profiles>
80         <profile>
81             <id>blackduck</id>
82             <activation>
83                 <property>
84                     <name>blackduck-scan</name>
85                 </property>
86             </activation>
87             <build>
88                 <plugins>
89                     <plugin>
90                         <groupId>com.blackducksoftware.integration</groupId>
91                         <artifactId>hub-maven-plugin</artifactId>
92                         <version>1.4.0</version>
93                         <inherited>false</inherited>
94                         <configuration>
95                             <hubProjectName>${project.name}</hubProjectName>
96                             <outputDirectory>${project.basedir}</outputDirectory>
97                         </configuration>
98                         <executions>
99                             <execution>
100                                 <id>create-bdio-file</id>
101                                 <phase>package</phase>
102                                 <goals>
103                                     <goal>createHubOutput</goal>
104                                 </goals>
105                             </execution>
106                         </executions>
107                     </plugin>
108                 </plugins>
109             </build>
110         </profile>
111         <profile>
112             <id>dependency-list</id>
113             <build>
114                 <plugins>
115                     <plugin>
116                         <groupId>com.github.ferstl</groupId>
117                         <artifactId>depgraph-maven-plugin</artifactId>
118                         <executions>
119                             <execution>
120                                 <phase>validate</phase>
121                                 <inherited>false</inherited>
122                                 <goals>
123                                     <goal>aggregate</goal>
124                                 </goals>
125                             </execution>
126                         </executions>
127                     </plugin>
128                     <plugin>
129                         <groupId>org.codehaus.mojo</groupId>
130                         <artifactId>build-helper-maven-plugin</artifactId>
131                         <executions>
132                             <execution>
133                                 <id>attach-artifacts</id>
134                                 <phase>package</phase>
135                                 <inherited>false</inherited>
136                                 <goals>
137                                     <goal>attach-artifact</goal>
138                                 </goals>
139                                 <configuration>
140                                     <artifacts>
141                                         <artifact>
142                                             <file>${dependency-list.file}</file>
143                                             <type>txt</type>
144                                             <classifier>dependencies</classifier>
145                                         </artifact>
146                                     </artifacts>
147                                 </configuration>
148                             </execution>
149                         </executions>
150                     </plugin>
151                 </plugins>
152             </build>
153         </profile>
154     </profiles>
155 </project>