Release appc
[appc.git] / appc-sdc-listener / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14       http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 ============LICENSE_END=========================================================
23 -->
24 <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">
25         <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.appc.parent</groupId>
28                 <artifactId>odlparent-lite</artifactId>
29                 <version>2.7.2</version>
30                 <relativePath/>
31         </parent>
32         <groupId>org.onap.appc</groupId>
33
34         <artifactId>appc-sdc-listener</artifactId>
35     <version>1.7.2</version>
36         <name>SDC Event Listener</name>
37         <description>Listener to read and write events from DMaaP (Cambria) or DMaaP.</description>
38         <packaging>pom</packaging>
39
40         <reporting>
41                 <plugins>
42                         <plugin>
43                                 <artifactId>maven-javadoc-plugin</artifactId>
44                                 <configuration>
45                                         <additionalDependencies>
46                                                 <additionalDependency>
47                                                         <groupId>org.slf4j</groupId>
48                                                         <artifactId>slf4j-api</artifactId>
49                                                         <version>${slf4j.version}</version>
50                                                 </additionalDependency>
51                                                 <additionalDependency>
52                                                         <groupId>org.antlr</groupId>
53                                                         <artifactId>antlr4</artifactId>
54                                                         <version>${antlr.version}</version>
55                                                 </additionalDependency>
56                                                 <additionalDependency>
57                                                         <groupId>org.antlr</groupId>
58                                                         <artifactId>antlr4-runtime</artifactId>
59                                                         <version>4.3</version>
60                                                 </additionalDependency>
61                                         </additionalDependencies>
62                                 </configuration>
63                                 <reportSets>
64                                         <reportSet>
65                                                 <reports>
66                                                         <report>javadoc-no-fork</report>
67                                                         <report>test-javadoc-no-fork</report>
68                                                 </reports>
69                                         </reportSet>
70                                         <reportSet>
71                                                 <id>aggregate</id>
72                                                 <reports>
73                                                         <report>aggregate</report>
74                                                         <report>test-aggregate</report>
75                                                 </reports>
76                                         </reportSet>
77                                 </reportSets>
78                         </plugin>
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-jxr-plugin</artifactId>
82                                 <version>2.3</version>
83                                 <reportSets>
84                                         <reportSet>
85                                                 <id>aggregate</id>
86                                                 <reports>
87                                                         <report>aggregate</report>
88                                                         <report>test-aggregate</report>
89                                                 </reports>
90                                         </reportSet>
91                                 </reportSets>
92                         </plugin>
93
94                         <plugin>
95                                 <artifactId>maven-surefire-plugin</artifactId>
96                         </plugin>
97                         
98                         <plugin>
99                                 <groupId>org.apache.maven.plugins</groupId>
100                                 <artifactId>maven-changelog-plugin</artifactId>
101                                 <version>2.3</version>
102                                 <reportSets>
103                                         <reportSet>
104                                                 <id>dual-report</id>
105                                                 <configuration>
106                                                         <type>range</type>
107                                                         <range>30</range>
108                                                 </configuration>
109                                                 <reports>
110                                                         <report>changelog</report>
111                                                         <report>file-activity</report>
112                                                 </reports>
113                                         </reportSet>
114                                 </reportSets>
115                         </plugin>
116                         
117                         <plugin>
118                                 <groupId>org.codehaus.mojo</groupId>
119                                 <artifactId>taglist-maven-plugin</artifactId>
120                                 <version>2.4</version>
121                         </plugin>
122                 </plugins>
123         </reporting>
124
125         <modules>
126                 <module>appc-yang-generator</module>
127                 <module>appc-sdc-listener-bundle</module>
128                 <module>appc-sdc-listener-features</module>
129                 <module>appc-sdc-listener-installer</module>
130         </modules>
131 </project>